(codePoint: number)
| 141 | } |
| 142 | |
| 143 | function isPartCharacter(codePoint: number): boolean { |
| 144 | return isStartCharacter(codePoint) || (isAscii(codePoint) && isDigit(codePoint)); |
| 145 | } |
| 146 | |
| 147 | const legalizeName = utf16LegalizeCharacters(isPartCharacter); |
| 148 |
nothing calls this directly
no test coverage detected
searching dependent graphs…