Skip to content

Commit 9d2e03c

Browse files
committed
feat(inflekt): re-export toKebabCase from komoji
1 parent febc209 commit 9d2e03c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/inflekt/src/case.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ import {
1212
toCamelCase as _toCamelCase,
1313
toPascalCase,
1414
toSnakeCase,
15+
toKebabCase,
1516
toConstantCase,
1617
} from 'komoji';
1718

1819
// Re-export komoji functions directly
19-
export { lcFirst, ucFirst, toPascalCase, toSnakeCase, toConstantCase };
20+
export { lcFirst, ucFirst, toPascalCase, toSnakeCase, toKebabCase, toConstantCase };
2021

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

0 commit comments

Comments
 (0)