get-nested-prop
v1.0.0
Published
A one-liner to get a nested prop using dot-notation with a optional default value as fallback
Downloads
2
Maintainers
Readme
Install
$ npm install --save get-nested-prop
# OR
$ yarn add get-nested-prop
Usage
const getNestedProp = require('get-nested-prop')
const obj = {
foo: {
bar: {
baz: 5
}
}
}
console.log(getNestedProp(obj, 'foo.bar.baz')) // 5
console.log(getNestedProp(obj, 'foo.bar.baz.boo', 5)) // 5
Contribute
Contributions are welcome. Please open up an issue or create PR if you would like to help out.
Note: If editing the README, please conform to the standard-readme specification.
License
Licensed under the MIT License.