mirror of
https://github.com/FJurmanovic/wallet-web.git
synced 2026-02-06 06:08:10 +00:00
7 lines
177 B
TypeScript
7 lines
177 B
TypeScript
export default function toKebabCase(text: string): string {
|
|
return text
|
|
.replace(/([a-z])([A-Z])/g, "$1-$2")
|
|
.replace(/\s+/g, "-")
|
|
.toLowerCase();
|
|
}
|