This repository has been archived on 2024-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
smart-tag/node_modules/lowercase-keys
alexmorenograu 12b3da8efd first commit 2021-03-10 16:27:43 +01:00
..
index.d.ts first commit 2021-03-10 16:27:43 +01:00
index.js first commit 2021-03-10 16:27:43 +01:00
license first commit 2021-03-10 16:27:43 +01:00
package.json first commit 2021-03-10 16:27:43 +01:00
readme.md first commit 2021-03-10 16:27:43 +01:00

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