mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-09-24 08:46:35 -05:00
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
export function slugify(str: string): string {
|
|
return str.toLowerCase().replaceAll(/ /g, '-');
|
|
}
|