(char: string)
| 43 | |
| 44 | // Check if a character is a combining mark (only diacritics for now) |
| 45 | export const isCombiningMark = (char: string): boolean => /\p{M}/u.test(char); |
| 46 | |
| 47 | // Check if a character should be considered part of a word (including combining marks) |
| 48 | export const isWordCharWithCombining = (char: string): boolean => |
no outgoing calls
no test coverage detected