# Lower Case First

> Transforms the string with only the first character in lower case.

## Installation

```
npm install lower-case-first --save
```

## Usage

```js
import { lowerCaseFirst } from "lower-case-first";

lowerCaseFirst("TEST"); //=> "tEST"
```

## License

MIT
