Skip to content

Instantly share code, notes, and snippets.

@ManUtopiK
Created September 2, 2021 16:42
Show Gist options
  • Select an option

  • Save ManUtopiK/93d68bfe602a93813a39c1196edfea3a to your computer and use it in GitHub Desktop.

Select an option

Save ManUtopiK/93d68bfe602a93813a39c1196edfea3a to your computer and use it in GitHub Desktop.
slugify
String.prototype.slugify = function (separator = '-') {
return this.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