Creates a regex that matches a string of literal characters. A shorthand for seq([singleChar(...), singleChar(...), ...]).
seq([singleChar(...), singleChar(...), ...])
string('abc') // like /abc/ Copy
string('abc') // like /abc/
Creates a regex that matches a string of literal characters. A shorthand for
seq([singleChar(...), singleChar(...), ...])
.