(x)
| 9 | Nothing.prototype.empty = function() { return new Nothing(); }; |
| 10 | |
| 11 | function Just(x) { this.value = x; } |
| 12 | Just.prototype.empty = function() { return new Nothing(); }; |
| 13 | |
| 14 | eq(R.empty(new Nothing()).constructor, Nothing); |
no outgoing calls
no test coverage detected
searching dependent graphs…