Skip to content

Instantly share code, notes, and snippets.

@vaporic
Created August 4, 2016 16:16
Show Gist options
  • Save vaporic/e818c85c348fd8030ccef37225a9fa42 to your computer and use it in GitHub Desktop.
Save vaporic/e818c85c348fd8030ccef37225a9fa42 to your computer and use it in GitHub Desktop.
Slugify Function
function slugify(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
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment