Created
April 2, 2021 02:12
-
-
Save autr/4c8d53ffe706d3a0a820ab489c54385c to your computer and use it in GitHub Desktop.
Turn a bit of text into a URL-friendly slug
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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