(characters: string)
| 162 | // no close bracket, probably trying to do a left shift, take literal |
| 163 | // char sequence |
| 164 | const rawTokenize = (characters: string): void => { |
| 165 | for (const c of characters) { |
| 166 | result.push(c); |
| 167 | } |
| 168 | }; |
| 169 | |
| 170 | // don't use a for of here, since the iterator doesn't split surrogate pairs |
| 171 | // eslint-disable-next-line @typescript-eslint/prefer-for-of |
no outgoing calls
no test coverage detected