UNPKG

remove-accents

Version:

Converting the accented characters to their corresponding non-accented ASCII characters.

9 lines (7 loc) 161 B
interface RemoveAccents { (part: string): string; remove(part: string): string; has(part: string): boolean; } declare var dm: RemoveAccents; export = dm;