cbc94a7d4416ed99dfc63a2bb13f18913eac076e3d3adf75c0f0d1f6832ac383.json 464 B

1
  1. {"ast":null,"code":"/**\n * The base implementation of `_.property` without support for deep paths.\n *\n * @private\n * @param {string} key The key of the property to get.\n * @returns {Function} Returns the new accessor function.\n */\nfunction baseProperty(key) {\n return function (object) {\n return object == null ? undefined : object[key];\n };\n}\nexport default baseProperty;","map":null,"metadata":{},"sourceType":"module","externalDependencies":[]}