/*! Copyright (c) 2020 Patrick Demian; Licensed under MIT */ "use strict"; /* String.prototype.escape = function() { var tagsToReplace = { '&': '&', '<': '<', '>': '>' }; return this.replace(/[&<>]/g, function(tag) { return tagsToReplace[tag] || tag; }); }; String.prototype.norm = function() { if(String.prototype.normalize != undefined) { return this.normalize("NFD").replace(/[\u0300-\u036F]/g,""); } return this; }; */ $( function() { });