7fife-backend/node_modules/underscore/modules/_shallowProperty.js

7 lines
202 B
JavaScript
Raw Normal View History

2024-03-07 13:01:44 +00:00
// Internal helper to generate a function to obtain property `key` from `obj`.
export default function shallowProperty(key) {
return function(obj) {
return obj == null ? void 0 : obj[key];
};
}