(value: string)
| 57 | const stripDoubleQuotes = (value: string): string => mapOutsideLiterals(value, s => s.replaceAll('"', '')); |
| 58 | |
| 59 | const normalizeQuotedIdentifiers = (value: string): string => stripDoubleQuotes(normalizeWhitespace(value)); |
| 60 | |
| 61 | const findMatchingParenthesis = (value: string, start: number): number => { |
| 62 | let depth = 0; |
no test coverage detected