Created
June 27, 2021 08:30
-
-
Save reddo/82a6be21ab1e9fd0bea19f606db8a97d to your computer and use it in GitHub Desktop.
This file contains 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
// convert qa string to slug in JS | |
const toSlug = function (str) { | |
str = str.replace(/^\s+|\s+$/g, ""); // trim | |
str = str.toLowerCase(); | |
// remove accents, swap ñ for n, etc | |
const from = "âăãàáäâẽèéëêìíïîõòóöôùúüûñçșț·/_,:;"; | |
const to = "aaaaaaaeeeeeiiiiooooouuuuncst------"; | |
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