Skip to content

Instantly share code, notes, and snippets.

@shaneshifflett
Created August 6, 2013 22:03
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 shaneshifflett/6169154 to your computer and use it in GitHub Desktop.
Save shaneshifflett/6169154 to your computer and use it in GitHub Desktop.
slugify
var slugify = function(input){
return input
.toLowerCase()
.replace(/ /g,'-')
.replace(/[^\w-]+/g,'');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment