get-property-value

get the property value from a nested object by using the dot path `a.b.c`


Keywords
utilities, js object, property, pick, get, path, object
License
ISC
Install
npm install get-property-value@4.0.3

Documentation

get-property-value

get the property value from a nested object by using a dot path a.b.c

Build StatusCode Coverage 100%ISC LicenseNodeJS

API

var getPropValue = require('get-property-value')

getPropValue({}, 'path')

Usage

var getPropValue = require('get-property-value')

var obj = {a: {b: 1}, c: {d: {f: 'hello'}}}

var fValue = getPropertyValue(obj, 'c.d.f')// hello
var aValue = getPropertyValue(obj, 'a')// {b: 1}

var propNotExist = getPropertyValue(obj, 'c.d.g') // undefined

var badObject = getPropertyValue('hello', 'c.d.g') // hello

var badPath = getPropertyValue({a: 1})// {a: 1}

ISC License (ISC)