(codePoint: number)
| 158 | } |
| 159 | |
| 160 | function isStartCharacter(codePoint: number): boolean { |
| 161 | return isPartCharacter(codePoint) && !isDigit(codePoint); |
| 162 | } |
| 163 | |
| 164 | const legalizeName = legalizeCharacters(isPartCharacter); |
| 165 |
nothing calls this directly
no test coverage detected
searching dependent graphs…