We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
toKebabCase / dasherize / slugify
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';
The text was updated successfully, but these errors were encountered:
Hi, I'm creating a PR, that's an interesting case!
Sorry, something went wrong.
@aceol I will review it ASAP, thanks for the contribution.
No branches or pull requests
Converts the input text to kebab case.
Example usage
Aliases
The text was updated successfully, but these errors were encountered: