16 lines
269 B
JavaScript
16 lines
269 B
JavaScript
getJasmineRequireObj().Falsy = function(j$) {
|
|
'use strict';
|
|
|
|
function Falsy() {}
|
|
|
|
Falsy.prototype.asymmetricMatch = function(other) {
|
|
return !other;
|
|
};
|
|
|
|
Falsy.prototype.jasmineToString = function() {
|
|
return '<jasmine.falsy>';
|
|
};
|
|
|
|
return Falsy;
|
|
};
|