Converts a camelCase string to kebab-case.
The camelCase string.
The kebab-case string.
camelToKebab("helloWorld"); // "hello-world"camelToKebab("tweakrLibraryUtils"); // "tweakr-library-utils" Copy
camelToKebab("helloWorld"); // "hello-world"camelToKebab("tweakrLibraryUtils"); // "tweakr-library-utils"
1.2.0
Converts a camelCase string to kebab-case.