Skip to content

Instantly share code, notes, and snippets.

@alefhsousa
Created April 16, 2018 00:02
Show Gist options
  • Select an option

  • Save alefhsousa/52c4c12247869ef01121ebb9c8dec697 to your computer and use it in GitHub Desktop.

Select an option

Save alefhsousa/52c4c12247869ef01121ebb9c8dec697 to your computer and use it in GitHub Desktop.
remove accentuation in javascript using ES6
function removeAccentuation(s) {
return s.normalize('NFD').replace(/[\u0300-\u036f]/g, "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment