mirror of
https://github.com/PeterMaquiran/tvone.git
synced 2026-04-22 03:55:52 +00:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
|
|
export function slugify(text: string) {
|
||
|
|
return text
|
||
|
|
.toLowerCase()
|
||
|
|
.trim()
|
||
|
|
.replace(/\s+/g, "-")
|
||
|
|
.replace(/[^a-z0-9-]/g, "");
|
||
|
|
}
|