UNPKG
@thinql/parse
Version:
latest (0.2.0)
0.2.0
Parse ThinQL queries to ASTs
github.com/mmiller42/thinql
mmiller42/thinql
@thinql/parse
/
dist
/
esm
/
tokens
/
quotedString.js
8 lines
•
287 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import jju
from
'jju/index.js'
;
const
quotedString = { lineBreaks:
true
, match: [/
"(?:[^"
\\\n]*|\\[
"\\bfnrt\/]|\\u[0-9a-f]{4}|\\\n)*"
/, /
'(?:[^'
\\\n]*|\\[
'\\bfnrt\/]|\\u[0-9a-f]{4}|\\\n)*'
/],
value
: jju.parse }; export
default
quotedString;
//# sourceMappingURL=quotedString.js.map