(codePoint: number)
| 234 | } |
| 235 | |
| 236 | export function isWordCharacter(codePoint: number): boolean { |
| 237 | return isLetter(codePoint) || isDigit(codePoint); |
| 238 | } |
| 239 | |
| 240 | function modifyFirstChar(f: (c: string) => string, s: string): string { |
| 241 | if (s === "") return s; |
no test coverage detected
searching dependent graphs…