mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 21:34:28 -05:00
4 lines
132 B
TypeScript
4 lines
132 B
TypeScript
export function makeNameUrlFriendly(name: string) {
|
|
return name.trim().replace(/\s\s+/g, " ").toLowerCase().replace(/ /g, "-");
|
|
}
|