committed by
GitHub
parent
20d2b4f98d
commit
e4f3964f67
2
node_modules/underscore/amd/isObject.js
generated
vendored
2
node_modules/underscore/amd/isObject.js
generated
vendored
@ -3,7 +3,7 @@ define(function () {
|
||||
// Is a given variable an object?
|
||||
function isObject(obj) {
|
||||
var type = typeof obj;
|
||||
return type === 'function' || type === 'object' && !!obj;
|
||||
return type === 'function' || (type === 'object' && !!obj);
|
||||
}
|
||||
|
||||
return isObject;
|
||||
|
Reference in New Issue
Block a user