login/node_modules/underscore/cjs/isUndefined.js
2023-11-20 14:12:35 +08:00

6 lines
120 B
JavaScript

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