Open vorillaz opened 5 years ago
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';
Hi, I'm creating a PR, that's an interesting case!
@aceol I will review it ASAP, thanks for the contribution.
Converts the input text to kebab case.
Example usage
Aliases