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

13 lines
253 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
define(function () {
// Internal helper to generate a function to obtain property `key` from `obj`.
function shallowProperty(key) {
return function(obj) {
return obj == null ? void 0 : obj[key];
};
}
return shallowProperty;
});