Skip to content

Instantly share code, notes, and snippets.

@eoikonomou
Last active September 6, 2024 12:39
Show Gist options
  • Save eoikonomou/a2bbc6092886b3f3d4af98be56d545cf to your computer and use it in GitHub Desktop.
Save eoikonomou/a2bbc6092886b3f3d4af98be56d545cf to your computer and use it in GitHub Desktop.
Remove accents
function removeAccents(str) {
if (!str) {
return ''
}
return str.normalize('NFD').replace(/[\u0300-\u036f]/g, '')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment