UNPKG

normalize-cjk

Version:
8 lines (6 loc) 275 B
import { normalizeChinese } from './chinese.ts'; import { normalizeJapanese } from './japanese.ts'; import { normalizeKorean } from './korean.ts'; export const normalize = (input: string): string => { return normalizeChinese(normalizeJapanese(normalizeKorean(input))); };