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

5 lines
104 B
JavaScript
Raw Normal View 히스토리

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