Files
JiboSDK/node_modules/underscore/cjs/isUndefined.js

7 lines
120 B
JavaScript
Raw Normal View History

2026-03-22 03:21:45 +02:00
// Is a given variable undefined?
function isUndefined(obj) {
return obj === void 0;
}
module.exports = isUndefined;