Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Transform text into a URL slug: spaces turned into dashes, remove non alnum
- * @param string text
- */
- function slugify(text) {
- text = text.replace(/[^-a-zA-Z0-9,&\s]+/ig, '');
- text = text.replace(/-/gi, "_");
- text = text.replace(/\s/gi, "-");
- return text;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement