@@ -29,6 +29,10 @@ getJasmineRequireObj().base = function(j$, jasmineGlobal) {
|
||||
return j$.isA_('Number', value);
|
||||
};
|
||||
|
||||
j$.isFunction_ = function(value) {
|
||||
return j$.isA_('Function', value);
|
||||
};
|
||||
|
||||
j$.isA_ = function(typeName, value) {
|
||||
return Object.prototype.toString.apply(value) === '[object ' + typeName + ']';
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user