# @lavadrop/camel-case

[![npm license](http://img.shields.io/npm/l/@lavadrop/camel-case.svg)](https://www.npmjs.org/package/@lavadrop/camel-case)
[![Travis Build Status](https://img.shields.io/travis/jedmao/lavadrop.svg)](https://travis-ci.org/jedmao/lavadrop)
[![codecov](https://codecov.io/gh/jedmao/lavadrop/branch/master/graph/badge.svg)](https://codecov.io/gh/jedmao/lavadrop)
[![Try @lavadrop/camel-case on RunKit](https://badge.runkitcdn.com/@lavadrop/camel-case.svg)](https://npm.runkit.com/@lavadrop/camel-case)

Part of a [library](../../../../) of zero-dependency npm modules that do just
one thing.

- 100% [TypeScript](http://www.typescriptlang.org/) support.
- It's not a party without [`Lavadrop`](../../../../)!

[![npm](https://nodei.co/npm/@lavadrop/camel-case.svg?downloads=true)](https://nodei.co/npm/@lavadrop/camel-case/)

min + gzip | 224 bytes

[source](https://github.com/jedmao/lavadrop/blob/master/src/packages/camel-case/camelCase.ts)

Converts a string value into [camel case](https://en.wikipedia.org/wiki/Camel_case).

## Usage

```ts
import camelCase from '@lavadrop/camel-case'

camelCase('foo-bar-baz')
// => 'fooBarBaz'
```

## Parameters

| Name    | Type     | Description            |
| :------ | :------- | :--------------------- |
| `value` | `string` | The string to convert. |

## Returns

The camel-cased string.

### Return type

```ts
string
```
