Mohammad Asif cf937194cb Removed un-waned things 1. преди 1 година
..
index.d.ts cf937194cb Removed un-waned things 1. преди 1 година
index.js cf937194cb Removed un-waned things 1. преди 1 година
license cf937194cb Removed un-waned things 1. преди 1 година
package.json cf937194cb Removed un-waned things 1. преди 1 година
readme.md cf937194cb Removed un-waned things 1. преди 1 година

readme.md

lowercase-keys Build Status

Lowercase the keys of an object

Install

$ npm install lowercase-keys

Usage

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

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

API

lowercaseKeys(object)

Returns a new object with the keys lowercased.

License

MIT © Sindre Sorhus