0
GGGiovanny Gongora
Removes accents from strings.
0 Comments
const removeAccents = (str: string) => str.normalize('NFD').replace(/[\u0300-\u036f]/g, '');