{string}
gets value from an object based on the given key string or function
getValueFromObject({ a: { b: 2 } }, 'a');// returns {b:2} Copy
getValueFromObject({ a: { b: 2 } }, 'a');// returns {b:2}
Generated using TypeDoc
Deprecated
Description
gets value from an object based on the given key string or function
Example