Skip to content

mattyod/deep-has

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.