Skip to content

Instantly share code, notes, and snippets.

@jobsamuel
Created January 13, 2018 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jobsamuel/cf20063eb94456b5c4fd182b16338364 to your computer and use it in GitHub Desktop.
Save jobsamuel/cf20063eb94456b5c4fd182b16338364 to your computer and use it in GitHub Desktop.
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