(source, index)
| 1085 | } |
| 1086 | |
| 1087 | function skipWhitespace(source, index) { |
| 1088 | while (/\s/.test(source[index] ?? "")) { |
| 1089 | index += 1; |
| 1090 | } |
| 1091 | return index; |
| 1092 | } |
| 1093 | |
| 1094 | function skipQuoted(source, start) { |
| 1095 | const quote = source[start]; |