Skip to content

Instantly share code, notes, and snippets.

@jancassio
Created May 6, 2020 14:20
Show Gist options
  • Save jancassio/967fccd70179945fc81e910058fc81d3 to your computer and use it in GitHub Desktop.
Save jancassio/967fccd70179945fc81e910058fc81d3 to your computer and use it in GitHub Desktop.
/**
Removes accents from strings.
Example:
stripAccents("Jânio Cássio") // outputs Janio Cassio
@param string The string to strip accents with
@return A new string with without accents.
*/
function stripAccents(string) {
return string.normalize("NFD").replace(/[\u0300-\u036f]/g, "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment