dld_backend/node_modules/underscore/cjs/isUndefined.js
2025-10-30 12:13:02 +05:30

7 lines
120 B
JavaScript

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