Files
tekelanew_acs/acs/nladmin-ui/node_modules/lower-case-first
2024-12-05 09:33:18 +08:00
..
2024-12-05 09:33:18 +08:00
2024-12-05 09:33:18 +08:00
2024-12-05 09:33:18 +08:00
2024-12-05 09:33:18 +08:00
2024-12-05 09:33:18 +08:00

Lower Case First

NPM version NPM downloads Build status Test coverage

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.

Installation

npm install lower-case-first --save

Usage

var lowerCaseFirst = require('lower-case-first')

lowerCaseFirst(null)     //=> ""
lowerCaseFirst('STRING') //=> "sTRING"

Typings

Includes a TypeScript definition.

License

MIT