parcoursup/node_modules/lodash/_basePropertyOf.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

15 lines
358 B
JavaScript

/**
* The base implementation of `_.propertyOf` without support for deep paths.
*
* @private
* @param {Object} object The object to query.
* @returns {Function} Returns the new accessor function.
*/
function basePropertyOf(object) {
return function(key) {
return object == null ? undefined : object[key];
};
}
module.exports = basePropertyOf;