Skip to content

Instantly share code, notes, and snippets.

@OrderAndCh4oS
Created September 25, 2024 23:55
Show Gist options
  • Save OrderAndCh4oS/518faeb2d851955e1e409210cdb2b48a to your computer and use it in GitHub Desktop.
Save OrderAndCh4oS/518faeb2d851955e1e409210cdb2b48a to your computer and use it in GitHub Desktop.
Slugify
const slugify = (str: string) => str
.normalize("NFD")
.replace(/[^\w\s]/g, '')
.trim()
.replace(/\s+/g, '-')
.toLowerCase()
;
console.log(slugify(' Blhä+ LFgha+áaf. asfaASF aFsfsf. '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment