Files
jasmine/src/core/asymmetric_equality/Truthy.js
2025-10-05 06:53:54 -07:00

16 lines
276 B
JavaScript

getJasmineRequireObj().Truthy = function(j$) {
'use strict';
function Truthy() {}
Truthy.prototype.asymmetricMatch = function(other) {
return !!other;
};
Truthy.prototype.jasmineToString = function() {
return '<jasmine.truthy>';
};
return Truthy;
};