Created
January 13, 2018 17:24
-
-
Save jobsamuel/cf20063eb94456b5c4fd182b16338364 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
function quitarAcentos(texto) { | |
const x = 'abcdefghijklmnopqrstvuwxyz'; | |
const y = 'ábćdéfǵhíjḱĺḿńóṕqŕśtúǘẃxýź'; | |
const z = new RegExp(`[${y}]`, 'g'); | |
return texto.toLowerCase() | |
.replace(z, letra => x[y.indexOf(letra)]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment