Files
jasmine/src/core/Anything.js

11 lines
219 B
JavaScript

getJasmineRequireObj().Anything = function(j$) {
function Anything() {}
Anything.prototype.asymmetricMatch = function(other) {
return !j$.util.isUndefined(other) && other !== null;
};
return Anything;
};