Skip to content

Instantly share code, notes, and snippets.

@autr
Created April 2, 2021 02:12
Show Gist options
  • Save autr/4c8d53ffe706d3a0a820ab489c54385c to your computer and use it in GitHub Desktop.
Save autr/4c8d53ffe706d3a0a820ab489c54385c to your computer and use it in GitHub Desktop.
Turn a bit of text into a URL-friendly slug
export default text => text.toString().toLowerCase()
.replaceAll(' ', '-') // Replace spaces with -
.replace(/[^\w\-]+/g, '') // Remove all non-word chars
.replace(/\-\-+/g, '-') // Replace multiple - with single -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment