1 line
405 B
JSON
1 line
405 B
JSON
{"ast":null,"code":"/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\nmodule.exports = getValue;","map":null,"metadata":{},"sourceType":"script"} |