getprop
v0.0.2
Published
Property getter for objects which supports nesting i.e. x.y.z
Downloads
5
Readme
getprop
Property getter for objects which supports nesting i.e. x.y.z
Install
npm install getprop
Usage
var bob = {
name: 'bob',
friend: {
name: 'james'
}
}
get(bob, 'friend.name') // => 'james'