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