mirror of
https://github.com/ChenQihan666/MyBlog-Next.git
synced 2026-08-14 07:33:07 +08:00
8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
const slugify = (str: string) =>
|
|
str
|
|
.toLowerCase()
|
|
.replace(/ /g, "-")
|
|
.replace(/[^\w-]+/g, "");
|
|
|
|
export default slugify;
|