1function convertToSlug(Text)
2{
3 return Text
4 .toLowerCase()
5 .replace(/ /g,'-')
6 .replace(/[^\w-]+/g,'')
7 ;
8}
1function slugify(string) {
2 return string
3 .toString()
4 .trim()
5 .toLowerCase()
6 .replace(/\s+/g, "-")
7 .replace(/[^\w\-]+/g, "")
8 .replace(/\-\-+/g, "-")
9 .replace(/^-+/, "")
10 .replace(/-+$/, "");
11}
12