ship-gis/node_modules/underscore/amd/isUndefined.js
2026-01-22 09:14:01 +09:00

11 lines
147 B
JavaScript

define(function () {
// Is a given variable undefined?
function isUndefined(obj) {
return obj === void 0;
}
return isUndefined;
});