Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/inflekt/src/case.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ import {
toCamelCase as _toCamelCase,
toPascalCase,
toSnakeCase,
toKebabCase,
toConstantCase,
} from 'komoji';

// Re-export komoji functions directly
export { lcFirst, ucFirst, toPascalCase, toSnakeCase, toConstantCase };
export { lcFirst, ucFirst, toPascalCase, toSnakeCase, toKebabCase, toConstantCase };

// Re-export toCamelCase — komoji's version accepts a second parameter
// (stripLeadingNonAlphabetChars) so we wrap to keep the simpler inflekt signature
Expand Down
Loading