(char: string)
| 61 | const isSpace = (char: string) => /\s/.test(char) |
| 62 | // http://www.unicode.org/charts/ |
| 63 | const isIdeograph = (char: string) => |
| 64 | /[\u3040-\u30ff\u3400-\u4dbf\u4e00-\u9fff\uf900-\ufaff\uff66-\uff9f\u3131-\uD79D]/.test(char) |
| 65 | // http://www.unicode.org/charts/ |
| 66 | // https://zh.wikipedia.org/zh-cn/Unicode%E5%AD%97%E7%AC%A6%E5%88%97%E8%A1%A8 |
| 67 | const isSpecialCharacters = (char: string) => |
no outgoing calls
no test coverage detected
searching dependent graphs…