fix(util) isObject: array was object

This commit is contained in:
coderaiser 2014-05-10 09:41:01 -04:00
parent ae33207535
commit 59dac1fe5b

View file

@ -650,7 +650,10 @@
* @param variable
*/
this.isObject = function(variable) {
return Util.isType(variable, 'object');
var type = Util.getType(variable),
is = type === 'object';
return is;
};
/**