npm.io
1.0.1 • Published 11 years ago

to-lower-case

Licence
MIT
Version
1.0.1
Deps
0
Vulns
0
Weekly
0
Stars
1

to lower-case

Travis

Lower case a string. Also handles objects with toString property, numbers and booleans.

###Install

npm install to-lower-case --save

###Usage

var toLowerCase = require('to-lower-case');

toLowerCase('STRING') // => 'string'

toLowerCase({ toString: function() {
    return 'my STRING';
}}); // => 'my string'