(ch: string | undefined)
| 585 | const DOUBLE_QUOTE_CHARS = new Set(['"', "“", "”"]); |
| 586 | |
| 587 | function isDoubleQuote(ch: string | undefined): boolean { |
| 588 | return ch !== undefined && DOUBLE_QUOTE_CHARS.has(ch); |
| 589 | } |
| 590 | |
| 591 | // Horizontal whitespace only (space, tab, NBSP, other Unicode spaces) — NOT |
| 592 | // line breaks. VALUE tokens never contain newlines (constants.ts VARIABLE_REGEX |
no outgoing calls
no test coverage detected