Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const slugify = function(text) {
- return text
- .toString()
- .toLowerCase()
- .replace(/\s+/g, '-') // Replace spaces with -
- .replace(/[^\w-]+/g, '') // Remove all non-word chars
- .replace(/--+/g, '-') // Replace multiple - with single -
- .replace(/^-+/, '') // Trim - from start of text
- .replace(/-+$/, '') // Trim - from end of text
- }
Advertisement
Add Comment
Please, Sign In to add comment