# Upper Case

> Transforms the string to upper case.

## Installation

```
npm install upper-case --save
```

## Usage

```js
import { upperCase, localeUpperCase } from "upper-case";

upperCase("string"); //=> "STRING"

localeUpperCase("string", "tr"); //=> "STRİNG"
```

## License

MIT
