Gazebo_simulation-Frontend/node_modules/lower-case
Riddhi Dave f4870cd530 simulator page updates 2020-12-22 09:59:14 -05:00
..
LICENSE React files 2020-12-21 10:29:31 -05:00
README.md React files 2020-12-21 10:29:31 -05:00
lower-case.d.ts React files 2020-12-21 10:29:31 -05:00
lower-case.js React files 2020-12-21 10:29:31 -05:00
package.json simulator page updates 2020-12-22 09:59:14 -05:00

README.md

Lower Case

NPM version NPM downloads Build status Test coverage

Lower case 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 --save

Usage

var lowerCase = require('lower-case')

lowerCase(null)           //=> ""
lowerCase('STRING')       //=> "string"
lowerCase('STRING', 'tr') //=> "strıng"

lowerCase({ toString: function () { return 'TEST' } }) //=> "test"

Typings

Includes a TypeScript definition.

License

MIT