fastget

1.0.2 • Public • Published

Fastget

An alternative to lodash' _.get(). It can get the value from an object or an array with ease.

Install

npm install fastget --save

or with yarn

yarn add fastget

Usage

import get from 'fastget';
 
const obj = {a: [{b: {c: 3}}]}
 
get(() => obj.a[0].b.c)
// => 3
 
get(() => obj.a.b.c, 'default')
// => 'default'

Tests

npm test

or with yarn

yarn test

Licence

MIT

/fastget/

    Package Sidebar

    Install

    npm i fastget

    Weekly Downloads

    6

    Version

    1.0.2

    License

    MIT

    Last publish

    Collaborators

    • malfaitrobin