Skip to content

Instantly share code, notes, and snippets.

@malko
Last active November 7, 2016 09:15
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 malko/a1b1976eec07142f555ca8ae74010e1f to your computer and use it in GitHub Desktop.
Save malko/a1b1976eec07142f555ca8ae74010e1f to your computer and use it in GitHub Desktop.
/**
* source: http://stackoverflow.com/a/37511463/646056
*/
function removeDiacritics(s) {
return s.normalize('NFD').replace(/[\u0300-\u036f]/g, '');
}
@malko
Copy link
Author

malko commented Oct 26, 2016

it just have wonderful perfs https://jsperf.com/normalizeremovediacretics3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment