lvkun996 1ab85a60dc init há 1 ano atrás
..
index.js 1ab85a60dc init há 1 ano atrás
license 1ab85a60dc init há 1 ano atrás
package.json 1ab85a60dc init há 1 ano atrás
readme.md 1ab85a60dc init há 1 ano atrás

readme.md

lowercase-keys Build Status

Lowercase the keys of an object

Install

$ npm install --save lowercase-keys

Usage

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

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

API

lowercaseKeys(object)

Lowercases the keys and returns a new object.

License

MIT © Sindre Sorhus