Files
feedstr.live/node_modules/underscore/cjs/isUndefined.js
T
2023-11-25 18:12:47 -05:00

7 lines
120 B
JavaScript

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