Skip to content

Instantly share code, notes, and snippets.

@hellokvn
Created March 7, 2022 02:14
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 hellokvn/b7d7da8e9d5405a7ca35f99f0e06eef6 to your computer and use it in GitHub Desktop.
Save hellokvn/b7d7da8e9d5405a7ca35f99f0e06eef6 to your computer and use it in GitHub Desktop.
slugify.ts
const slugify = (str: string): string => str.toLowerCase().replace(/\s+/g, '-').replace(/[^\w-]+/g, '');
slugify('Hello World'); // -> hello-world
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment