UNPKG

casetext-transformer

Version:

The ultimate text transformation library with 40+ transformations - from standard case conversions to creative text effects

7 lines (6 loc) 299 B
import { toCamelCase, toSnakeCase, toKebabCase, toPascalCase, toTitleCase } from './index.js'; console.log(toCamelCase("hello world")); console.log(toSnakeCase("helloWorld")); console.log(toKebabCase("helloWorld")); console.log(toPascalCase("hello world")); console.log(toTitleCase("hello world"));