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'
Property getter for objects which supports nesting i.e. x.y.z
<script type="module">
import getprop from 'https://cdn.skypack.dev/getprop';
</script>
Property getter for objects which supports nesting i.e. x.y.z
npm install getprop
var bob = {
name: 'bob',
friend: {
name: 'james'
}
}
get(bob, 'friend.name') // => 'james'