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

4 lines
104 B
JavaScript
Executable file

// Is a given variable undefined?
export default function isUndefined(obj) {
return obj === void 0;
}