Skip to content

Instantly share code, notes, and snippets.

@mauricionobrega
Created October 10, 2018 22:00
Show Gist options
  • Save mauricionobrega/f44e99e88c510188b675e8e6a35770a6 to your computer and use it in GitHub Desktop.
Save mauricionobrega/f44e99e88c510188b675e8e6a35770a6 to your computer and use it in GitHub Desktop.
(function () {
'use strict';
String.prototype.normalize = function() {
var translate = {
'à':'a', 'á':'a', 'â':'a', 'ã':'a', 'ä':'a', 'å':'a', 'æ':'a', 'ç':'c', 'è':'e', 'é':'e', 'ê':'e', 'ë':'e',
'ì':'i', 'í':'i', 'î':'i', 'ï':'i', 'ð':'d', 'ñ':'n', 'ò' :'o', 'ó':'o', 'ô':'o', 'õ':'o', 'ö':'o', 'ø':'o',
'ù':'u', 'ú':'u', 'û':'u', 'ü':'u', 'ý':'y', 'þ':'b', 'ß' :'s', 'à':'a', 'á':'a', 'â':'a', 'ã':'a', 'ä':'a',
'å':'a', 'æ':'a', 'ç':'c', 'è':'e', 'é':'e', 'ê':'e', 'ë' :'e', 'ì':'i', 'í':'i', 'î':'i', 'ï':'i', 'ð':'d',
'ñ':'n', 'ò':'o', 'ó':'o', 'ô':'o', 'õ':'o', 'ö':'o', 'ø' :'o', 'ù':'u', 'ú':'u', 'û':'u', 'ý':'y', 'ý':'y',
'þ':'b', 'ÿ':'y', 'ŕ':'r', 'ŕ':'r'
}, translate_re = /[àáâãäåæçèéêëìíîïðñòóôõöøùúûüýþßàáâãäåæçèéêëìíîïðñòóôõöøùúûýýþÿŕŕ]/gim;
return (this.replace(translate_re, function(match) {
return translate[ match ];
}));
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment