deep-has

1.0.0 • Public • Published

Deep has Build Status

Find all instances of a specified key within a given object.

usage

With code such as:

var has = require('deep-has');

var obj = {
    foo: {
        bar: '123'
    },
    bar: false
};

var x = has(obj, 'bar');

x would be:

[
    { 'bar': false },
    { 'foo.bar': '123' }
]

The tests also provide further insight.

Readme

Keywords

Package Sidebar

Install

npm i deep-has

Weekly Downloads

42

Version

1.0.0

License

MIT

Last publish

Collaborators

  • mattyod