lhl 6ff0e96ad3 8-4-1 | il y a 1 an | |
---|---|---|
.. | ||
LICENSE | il y a 1 an | |
README.md | il y a 1 an | |
package.json | il y a 1 an | |
upper-case-first.d.ts | il y a 1 an | |
upper-case-first.js | il y a 1 an |
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