1 | # Upper Case
|
2 |
|
3 | > Transforms the string to upper case.
|
4 |
|
5 | ## Installation
|
6 |
|
7 | ```
|
8 | npm install upper-case --save
|
9 | ```
|
10 |
|
11 | ## Usage
|
12 |
|
13 | ```js
|
14 | import { upperCase, localeUpperCase } from "upper-case";
|
15 |
|
16 | upperCase("string"); //=> "STRING"
|
17 |
|
18 | localeUpperCase("string", "tr"); //=> "STRİNG"
|
19 | ```
|
20 |
|
21 | ## License
|
22 |
|
23 | MIT
|