FLUJOS/VISUALIZACION/node_modules/underscore/cjs/isUndefined.js
2025-11-07 00:06:12 +01:00

6 lines
120 B
JavaScript
Executable file

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