Skip to content

Instantly share code, notes, and snippets.

@IBRAHIMDANS
Last active September 2, 2021 21:10
Show Gist options
  • Save IBRAHIMDANS/44efcd009fcc28fa4890bed454743c0e to your computer and use it in GitHub Desktop.
Save IBRAHIMDANS/44efcd009fcc28fa4890bed454743c0e to your computer and use it in GitHub Desktop.
slugify
const slugify = (world, separator = '-') => {
return world.toString()
.normalize('NFD')
.replace(/[\u0300-\u036f]/g, '')
.toLowerCase()
.trim()
.replace(/[^a-z0-9 ]/g, '')
.replace(/\s+/g, separator)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment