(text)
| 1080 | } |
| 1081 | |
| 1082 | function firstStringLiteral(text) { |
| 1083 | const match = text.match(/"((?:\\"|[^"])*)"/); |
| 1084 | return match ? match[1].replace(/\\"/g, '"') : null; |
| 1085 | } |
| 1086 | |
| 1087 | function skipWhitespace(source, index) { |
| 1088 | while (/\s/.test(source[index] ?? "")) { |
no test coverage detected