0.1.0 • Published 4 years ago

caseless-get v0.1.0

Weekly downloads
8
License
MIT
Repository
github
Last release
4 years ago

caseless-get

大文字小文字の区別なくプロパティの値を取得する。

Installation

npm i caseless-get -S

Usage

const { get, multiGet } = require('caseless-get');

const obj = {
  FOO: 'foo',
  Bar: 'bar',
};

get(obj, 'foo');                 // => 'foo'
multiGet(obj, ['foo', 'bar']);   // => ['foo', 'bar']

License

MIT