UNPKG

super-utils-plus

Version:

A superior alternative to Lodash with improved performance, TypeScript support, and developer experience

20 lines (19 loc) 354 B
/** * Converts string to camel case. * * @param string - The string to convert * @returns The camel cased string * * @example * ```ts * camelCase('Foo Bar'); * // => 'fooBar' * * camelCase('--foo-bar--'); * // => 'fooBar' * * camelCase('__FOO_BAR__'); * // => 'fooBar' * ``` */ export declare function camelCase(string: string): string;