Sha256: 102bb7520adda0718b3953d6af99838244d97aa1697a36f50fc4ab0070350f41
Contents?: true
Size: 325 Bytes
Versions: 282
Compression:
Stored size: 325 Bytes
Contents
/** * 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. */ function getValue(object, key) { return object == null ? undefined : object[key]; } module.exports = getValue;
Version data entries
282 entries across 278 versions & 32 rubygems