UNPKG

extenso

Version:

Uma biblioteca avançada para escrever números por extenso (em português).

8 lines (7 loc) 247 B
/** * Removes diacritical marks from text while preserving its other characters. * @param text - The text to normalize * @returns The text without accents */ declare const removeAccents: (text: string) => string; export default removeAccents;