Skip to content

Instantly share code, notes, and snippets.

@dayaki
Created September 11, 2017 17:09
Show Gist options
  • Save dayaki/cb7547838ad2318bd613ba550a1c7547 to your computer and use it in GitHub Desktop.
Save dayaki/cb7547838ad2318bd613ba550a1c7547 to your computer and use it in GitHub Desktop.
slugify(string) {
let str = string.replace(/^\s+|\s+$/g, ''); // trim
str = str.toLowerCase();
// remove accents, swap ñ for n, etc
const from = 'àáäâèéëêìíïîòóöôùúüûñç·/_,:;';
const to = 'aaaaeeeeiiiioooouuuunc------';
for (let i=0, l=from.length ; i<l ; i++) {
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
}
str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
.replace(/\s+/g, '-') // collapse whitespace and replace by -
.replace(/-+/g, '-'); // collapse dashes
return str;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment