Converts the input text to kebab case.
Example usage
import toKebabCase from '@plexis/to-kebab-case';
toKebabCase('Cool');
// => 'cool'
toKebabCase('cool mate');
// => 'cool-mate'
toKebabCase('Hey how are you today?');
// => 'hey-how-are-you-today'
toKebabCase('camelCase');
// => 'camel-case'
toKebabCase('PascalCase');
// => pascal-case
Aliases
import toKebabCase from '@plexis/to-kebab-case';
import {toKebabCase, dasherize, slugify} from 'plexis';