Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Created October 14, 2019 23:52
Show Gist options
  • Save yuritoledo/f6dadb8deacf898d168c07f239e105cf to your computer and use it in GitHub Desktop.
Save yuritoledo/f6dadb8deacf898d168c07f239e105cf to your computer and use it in GitHub Desktop.
Remover acentos javascript es6
const removeAcentos = str => 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