jack e1a2621c78 update před 2 roky
..
LICENSE e1a2621c78 update před 2 roky
README.md e1a2621c78 update před 2 roky
package.json e1a2621c78 update před 2 roky
upper-case-first.d.ts e1a2621c78 update před 2 roky
upper-case-first.js e1a2621c78 update před 2 roky

README.md

Upper Case First

NPM version NPM downloads Build status Test coverage

Upper case the first character of a string.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

npm install upper-case-first --save

Usage

var upperCaseFirst = require('upper-case-first')

upperCaseFirst(null)     //=> ""
upperCaseFirst('string') //=> "String"

Typings

Includes a TypeScript definition.

License

MIT