Upper Case First
Transforms the string with the first character in upper cased.
Installation
npm install upper-case-first --save
Usage
import { upperCaseFirst } from "upper-case-first";
upperCaseFirst("test"); //=> "Test"
License
MIT
This package has been deprecated
Author message:
Use `input.charAt(0).toUpperCase() + input.slice(1)`
Transforms the string with the first character in upper cased.
npm install upper-case-first --save
import { upperCaseFirst } from "upper-case-first";
upperCaseFirst("test"); //=> "Test"
MIT
npm i upper-case-first
7,571,653
3.0.0
MIT
2.19 kB
5