Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. function slugify(text)
  2. {
  3. return text.toString().toLowerCase()
  4. .replace(/\s+/g, '-') // Replace spaces with -
  5. .replace(/[^\w\-]+/g, '') // Remove all non-word chars
  6. .replace(/\-\-+/g, '-') // Replace multiple - with single -
  7. .replace(/^-+/, '') // Trim - from start of text
  8. .replace(/-+$/, ''); // Trim - from end of text
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement