Skip to content

Instantly share code, notes, and snippets.

@oguzkaracar
Created June 26, 2021 21:43
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 oguzkaracar/7df2ab2135309e9baae3f8e34430ff9a to your computer and use it in GitHub Desktop.
Save oguzkaracar/7df2ab2135309e9baae3f8e34430ff9a to your computer and use it in GitHub Desktop.
Convert text to slug
export const convertToSlug = (str) => {
return str
.toUpperCase()
.toLowerCase()
.trim()
.normalize('NFD')
.replace(/[^\w-]+/g, '')
.replace(/\s+/g, '-');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment