@queso/camel-case
Version:
Converts a string value into camel case.
11 lines (10 loc) • 303 B
TypeScript
/**
* Converts a string value into [camel case](https://en.wikipedia.org/wiki/Camel_case).
* @param value The string to convert.
* @category String
* @returns The camel-cased string.
* @example
camelCase('foo-bar-baz')
// => 'fooBarBaz'
*/
export default function camelCase(value: string): string