christian 4571a14169 android fix | пре 4 година | |
---|---|---|
.. | ||
index.d.ts | пре 4 година | |
index.js | пре 4 година | |
license | пре 4 година | |
package.json | пре 4 година | |
readme.md | пре 4 година |
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