File size: 144 Bytes
1e92f2d |
1 2 3 4 5 6 |
export const toKebabCase = (string): string =>
string
?.replace(/([a-z])([A-Z])/g, "$1-$2")
.replace(/\s+/g, "-")
.toLowerCase();
|
1e92f2d |
1 2 3 4 5 6 |
export const toKebabCase = (string): string =>
string
?.replace(/([a-z])([A-Z])/g, "$1-$2")
.replace(/\s+/g, "-")
.toLowerCase();
|