Skip to content

Instantly share code, notes, and snippets.

@benjaminsehl
Created April 22, 2020 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjaminsehl/6c802cfc4a6d49e4ccab0d61cf9c3385 to your computer and use it in GitHub Desktop.
Save benjaminsehl/6c802cfc4a6d49e4ccab0d61cf9c3385 to your computer and use it in GitHub Desktop.
Turn a string into a slug
export function handleize (str) {
return str
.toLowerCase()
.replace(/[^\w\u00C0-\u024f]+/g, '-')
.replace(/^-+|-+$/g, '')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment