UNPKG

273 BMarkdownView Raw
1# Upper Case First
2
3> Transforms the string with the first character in upper cased.
4
5## Installation
6
7```
8npm install upper-case-first --save
9```
10
11## Usage
12
13```js
14import { upperCaseFirst } from "upper-case-first";
15
16upperCaseFirst("test"); //=> "Test"
17```
18
19## License
20
21MIT