Skip to content

Instantly share code, notes, and snippets.

@ahmadrosid
Created June 19, 2020 16:33
Show Gist options
  • Save ahmadrosid/3bf8e16a9e6582328f323adddb665cdf to your computer and use it in GitHub Desktop.
Save ahmadrosid/3bf8e16a9e6582328f323adddb665cdf to your computer and use it in GitHub Desktop.
export const slugify = (text?: string) => {
if (text == undefined) {
return "";
}
return text
.toString()
.normalize("NFD")
.replace(/[\u0300-\u036f]/g, "")
.toLowerCase()
.trim()
.replace(/\s+/g, "-")
.replace(/[^\w\-]+/g, "")
.replace(/\-\-+/g, "-");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment