| 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":[]}
|