ship-gis/node_modules/underscore/modules/_shallowProperty.js

7 lines
202 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09: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];
};
}