prc b6c02717e6 Upload complete no-internet building environment. | 1 년 전 | |
---|---|---|
.. | ||
index.d.ts | 1 년 전 | |
index.js | 1 년 전 | |
license | 1 년 전 | |
package.json | 1 년 전 | |
readme.md | 1 년 전 |
Lowercase the keys of an object
$ npm install lowercase-keys
const lowercaseKeys = require('lowercase-keys');
lowercaseKeys({FOO: true, bAr: false});
//=> {foo: true, bar: false}
Returns a new object with the keys lowercased.
MIT © Sindre Sorhus