Files
setup-helm/node_modules/underscore/modules/isObject.js

6 lines
163 B
JavaScript
Raw Normal View History

2022-06-27 14:17:15 -04:00
// Is a given variable an object?
export default function isObject(obj) {
var type = typeof obj;
2022-07-11 13:48:02 -04:00
return type === 'function' || (type === 'object' && !!obj);
2022-06-27 14:17:15 -04:00
}