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

10 lines
147 B
JavaScript
Executable file

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