UNPKG

@builder.io/mitosis

Version:

Write components once, run everywhere. Compiles to Vue, React, Solid, and Liquid. Import code from Figma and Builder.io

9 lines (8 loc) 250 B
/** * This is a function similar to loadash `camelCase`, but it does not mess with capitalization. * * loadash: `camelCase('A-BC')` => "ABc" * this fn: `camelCase('A-BC')` => "ABC" * */ export declare function camelCase(text?: string): string;