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
String.prototype.slugify = function (separator = "-") { | |
return this | |
.toString() | |
.normalize('NFD') // split an accented letter in the base letter and the acent | |
.replace(/[\u0300-\u036f]/g, '') // remove all previously split accents | |
.toLowerCase() | |
.trim() | |
.replace(/[^a-z0-9 ]/g, '') // remove all chars not letters, numbers and spaces (to be replaced) | |
.replace(/\s+/g, separator); | |
}; |