Emmanuil c2e0590820 31.07.2020 пре 4 година
..
index.js c2e0590820 31.07.2020 пре 4 година
license c2e0590820 31.07.2020 пре 4 година
package.json c2e0590820 31.07.2020 пре 4 година
readme.md c2e0590820 31.07.2020 пре 4 година

readme.md

lowercase-keys Build Status

Lowercase the keys of an object

Install

$ npm install --save lowercase-keys

Usage

var lowercaseKeys = require('lowercase-keys');

lowercaseKeys({FOO: true, bAr: false});
//=> {foo: true, bar: false}

API

lowercaseKeys(object)

Lowercases the keys and returns a new object.

License

MIT © Sindre Sorhus