Safely gets a property path from an object. The path is an array. If any property along the path is undefined, the function returns undefined.
undefined
the property value, or undefined if any property along the path is undefined.
the object on which to get the property.
the property path.
Generated using TypeDoc
Safely gets a property path from an object. The path is an array. If any property along the path is
undefined
, the function returnsundefined
.Returns
the property value, or
undefined
if any property along the path isundefined
.