Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Last active November 7, 2022 19:27
Show Gist options
  • Save bobdobbalina/61188761985bb53b383bb20adc60df03 to your computer and use it in GitHub Desktop.
Save bobdobbalina/61188761985bb53b383bb20adc60df03 to your computer and use it in GitHub Desktop.
Javascript: slugify string
function slugify(string) {
return string.replace(/\W+/g, "-")
.replace(/[-]+$/, "")
.toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment