MCPcopy Create free account
hub / github.com/Lemoncode/fonk / getValue

Function getValue

src/helpers/get.js:61–63  ·  view source on GitHub ↗

* Gets the value at `key` of `object`. * * @private * @param {Object} [object] The object to query. * @param {string} key The key of the property to get. * @returns {*} Returns the property value.

(object, key)

Source from the content-addressed store, hash-verified

59 * @returns {*} Returns the property value.
60 */
61function getValue(object, key) {
62 return object == null ? undefined : object[key];
63}
64
65/**
66 * Checks if `value` is a host object in IE < 9.

Callers 1

getNativeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…