Created
May 6, 2020 14:20
-
-
Save jancassio/967fccd70179945fc81e910058fc81d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
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