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

4 lines
98 B
JavaScript
Executable file

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