Skip to content

Instantly share code, notes, and snippets.

@mtinra
Created April 28, 2015 07:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mtinra/184970c10f175e0a21f3 to your computer and use it in GitHub Desktop.
Save mtinra/184970c10f175e0a21f3 to your computer and use it in GitHub Desktop.
Convert a string to slug
function convertToSlug(Text)
{
return Text
.toLowerCase()
.replace(/[^\w ]+/g,'')
.replace(/ +/g,'-')
;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment