ship-gis/node_modules/underscore/cjs/isUndefined.js

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

2026-01-22 09:14:01 +09:00
// Is a given variable undefined?
function isUndefined(obj) {
return obj === void 0;
}
module.exports = isUndefined;