Suggest a string to match /^$/ ?
Решение
Решение
We need a string which which starts and immidiately ends.
Or, being closer to regexp mechanics, the engine checks for text start position, and immediately checks for text end position without matching any characters.
It is possible only for the empty string.
#207