15 lines
260 B
JavaScript
15 lines
260 B
JavaScript
getJasmineRequireObj().Truthy = function(j$) {
|
|
|
|
function Truthy() {}
|
|
|
|
Truthy.prototype.asymmetricMatch = function(other) {
|
|
return !!other;
|
|
};
|
|
|
|
Truthy.prototype.jasmineToString = function() {
|
|
return '<jasmine.truthy>';
|
|
};
|
|
|
|
return Truthy;
|
|
};
|