Mohammad Asif cf937194cb Removed un-waned things 1. 5 달 전
..
index.d.ts cf937194cb Removed un-waned things 1. 5 달 전
index.js cf937194cb Removed un-waned things 1. 5 달 전
license cf937194cb Removed un-waned things 1. 5 달 전
package.json cf937194cb Removed un-waned things 1. 5 달 전
readme.md cf937194cb Removed un-waned things 1. 5 달 전

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