wonka
Version:
A fast push & pull stream library for Reason, loosely following the [callbag spec](https://github.com/callbag/callbag)
21 lines (14 loc) • 391 B
JavaScript
import * as Block from "bs-platform/lib/es6/block.js";
import * as Wonka_helpers from "../wonka_helpers.js";
function empty(sink) {
sink(/* Start */Block.__(0, [Wonka_helpers.talkbackPlaceholder]));
return sink(/* End */0);
}
function never(sink) {
return sink(/* Start */Block.__(0, [Wonka_helpers.talkbackPlaceholder]));
}
export {
empty ,
never ,
}
/* No side effect */