16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
getJasmineRequireObj().Anything = function(j$) {
|
|
'use strict';
|
|
|
|
function Anything() {}
|
|
|
|
Anything.prototype.asymmetricMatch = function(other) {
|
|
return other !== undefined && other !== null;
|
|
};
|
|
|
|
Anything.prototype.jasmineToString = function() {
|
|
return '<jasmine.anything>';
|
|
};
|
|
|
|
return Anything;
|
|
};
|