|
|
há 1 ano atrás | |
|---|---|---|
| .. | ||
| index.d.ts | há 1 ano atrás | |
| index.js | há 1 ano atrás | |
| license | há 1 ano atrás | |
| package.json | há 1 ano atrás | |
| readme.md | há 1 ano atrás | |
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