UNPKG

codetrix

Version:

A lightweight lodash-style utility library

11 lines (10 loc) 243 B
/** * Converts a string to camelCase format. * * @param str - The string to convert. * @returns The camelCased string. * * @example * camelCase('hello world'); // 'helloWorld' */ export declare function camelCase(str: string): string;