mirror of
https://github.com/Azure/setup-helm.git
synced 2025-09-09 05:26:33 +00:00
committed by
GitHub
parent
20d2b4f98d
commit
e4f3964f67
2
node_modules/underscore/modules/isObject.js
generated
vendored
2
node_modules/underscore/modules/isObject.js
generated
vendored
@ -1,5 +1,5 @@
|
||||
// Is a given variable an object?
|
||||
export default function isObject(obj) {
|
||||
var type = typeof obj;
|
||||
return type === 'function' || type === 'object' && !!obj;
|
||||
return type === 'function' || (type === 'object' && !!obj);
|
||||
}
|
||||
|
Reference in New Issue
Block a user