-
-
Save truetone/3739a45ca238c2f2aea2 to your computer and use it in GitHub Desktop.
JavaScript slug generator
This file contains hidden or 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
// Generates a URL-friendly "slug" from a provided string. | |
// For example: "This Is Great!!!" transforms into "this-is-great" | |
function generateSlug (value) { | |
// 1) convert to lowercase | |
// 2) replace anything that's not an alphanumeric character or dash with a dash | |
// 3) replace instances of more than one dash with a single dash | |
// 4) remove leading and trailing dashes | |
return value.toLowerCase().replace(/[^a-z0-9-]/g, '-').replace(/-+/g, '-').replace(/^-|-$/g, ''); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment