![]() | Name | Last modified | Size | Description |
---|---|---|---|---|
![]() | Parent Directory | - | ||
![]() | LICENSE | 9 years ago | 1.1K | |
![]() | README.md | 9 years ago | 1.3K | d7c1522 post receive test [كارل مبارك] |
![]() | package.json | 2 years ago | 2.0K | |
![]() | upper-case-first.d.ts | 9 years ago | 100 | |
![]() | upper-case-first.js | 9 years ago | 304 |
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.
npm install upper-case-first --save
var upperCaseFirst = require('upper-case-first')
upperCaseFirst(null) //=> ""
upperCaseFirst('string') //=> "String"
Includes a TypeScript definition.
MIT