You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is an unexpected result When I try to convert PascalCase string into kebab-case
// wrong behavior with PascalCasescule.kebabCase('ALink')'alink'// wrong, it should be a-link// If I convert it to camelCase works finescule.kebabCase(scule.camelCase('ALink'))'a-link'``
The text was updated successfully, but these errors were encountered:
It is an intended and documented behavior (test) to split on rising edges otherwise FOOBAR will be f-o-o-b-a-r. When using camelCase it will be converted to aLink which is a-link in kebab format. I'm okay with also doing it for falling edges but needs a major version.
There is an unexpected result When I try to convert PascalCase string into kebab-case
The text was updated successfully, but these errors were encountered: