UNPKG

clean-accents

Version:

A utility package for removing accents from string and checking if it has accents.

13 lines (11 loc) 249 B
declare const cleanAccents: { /** * Remove accents from a given string. */ clean: (str: string) => string; /** * Check if a given string has accents. */ has: (str: string) => boolean; }; export { cleanAccents };