(x)
| 10 | }, |
| 11 | |
| 12 | _handleError(x) { |
| 13 | const fn = this._fn |
| 14 | const result = fn(x) |
| 15 | if (result.convert) { |
| 16 | this._emitValue(result.value) |
| 17 | } else { |
| 18 | this._emitError(x) |
| 19 | } |
| 20 | }, |
| 21 | } |
| 22 | |
| 23 | const S = createStream('errorsToValues', mixin) |
nothing calls this directly
no test coverage detected
searching dependent graphs…