Created
April 28, 2016 14:25
-
-
Save thomasthesecond/70244d185caea8d8c2339ea86933971a to your computer and use it in GitHub Desktop.
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
// Takes a string and creates a hyphenated slug | |
const slug = string.toLowerCase() | |
.replace(/[\. ,:;&()-]+/g, "-") // replace spaces and some characters with "-" | |
.replace(/-\s*$/, ""); // if last character is a "-", remove it |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment