Converts a string value into camel case.
npm install @lavadrop/camel-case



Part of a library of zero-dependency npm modules that do just
one thing.
- 100% TypeScript support.
- It's not a party without Lavadrop!

min + gzip | 224 bytes
Converts a string value into camel case.
``ts
import camelCase from '@lavadrop/camel-case'
camelCase('foo-bar-baz')
// => 'fooBarBaz'
`
| Name | Type | Description |
| :------ | :------- | :--------------------- |
| value | string | The string to convert. |
The camel-cased string.
`ts``
string