Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 471 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 471 Bytes

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.