Skip to content

Instantly share code, notes, and snippets.

@tonyonodi
Created October 18, 2015 12:36
Show Gist options
  • Save tonyonodi/8d2247b425e9d56eedf0 to your computer and use it in GitHub Desktop.
Save tonyonodi/8d2247b425e9d56eedf0 to your computer and use it in GitHub Desktop.
// Turn a horrible string into a slug
" My string -is 1234!!5 here".trim()
.toLowerCase()
.replace(/[\s\-]+/g, "-")
.replace(/[^\w\-]+/g, "");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment