Files
wallet-web/src/core/utils/toKebabCase.ts
Fran Jurmanović 8754b4391b fixed types
2021-06-02 23:29:05 +02:00

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();
}