login/node_modules/underscore/cjs/isUndefined.js
2022-12-19 15:48:51 +05:30

6 lines
120 B
JavaScript

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