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

10 lines
136 B
JavaScript
Executable file

define(function () {
// Is a given value equal to null?
function isNull(obj) {
return obj === null;
}
return isNull;
});