Skip to content

Instantly share code, notes, and snippets.

@jlengstorf
Created June 8, 2019 02:39
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 jlengstorf/29c43cfff2111e5dfb9451beb87ac65f to your computer and use it in GitHub Desktop.
Save jlengstorf/29c43cfff2111e5dfb9451beb87ac65f to your computer and use it in GitHub Desktop.
// Quick-and-dirty helper to convert strings into URL-friendly slugs.
const slugify = str =>
str
.toLowerCase()
.replace(/[^a-z0-9]+/g, '-')
.replace(/(^-|-$)+/g, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment