(ch: string | undefined)
| 54 | let openQuote: string | null = null |
| 55 | let openAt = 0 |
| 56 | const isWord = (ch: string | undefined) => !!ch && /[\p{L}\p{N}_]/u.test(ch) |
| 57 | for (let i = 0; i < text.length; i++) { |
| 58 | const ch = text[i]! |
| 59 | if (openQuote) { |
no outgoing calls
no test coverage detected