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

5 lines
163 B
JavaScript
Executable file

// Is a given variable an object?
export default function isObject(obj) {
var type = typeof obj;
return type === 'function' || (type === 'object' && !!obj);
}