jack e1a2621c78 update | před 2 roky | |
---|---|---|
.. | ||
LICENSE | před 2 roky | |
README.md | před 2 roky | |
package.json | před 2 roky | |
upper-case-first.d.ts | před 2 roky | |
upper-case-first.js | před 2 roky |
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