case-text-utils
Version:
A tiny, dependency-free utility to convert string cases like camelCase, snake_case, kebab-case, PascalCase, Title Case, UPPER_CASE, and more.
12 lines (11 loc) • 469 B
JavaScript
export { toCamel } from './toCamel.js';
export { toSnake } from './toSnake.js';
export { toKebab } from './toKebab.js';
export { toPascal } from './toPascal.js';
export { toLower } from './toLower.js';
export { toUpper } from './toUpper.js';
export { toTitle } from './toTitle.js';
export { toCapital } from './toCapital.js';
export { toConstant } from './toConstant.js';
export { toPath } from './toPath.js';
export { convertCase } from './convertCase.js';