The input string to be converted.
The kebab case version of the input string.
const inputString = 'convertToKebabCase';
const kebabCaseString = convertToKebabCase(inputString);
console.log(kebabCaseString); // "convert-to-kebab-case"
Generated using TypeDoc
Converts a string to kebab case.