rimmel
Version:
A Stream-Oriented UI library for the Rx.Observable Universe
15 lines (13 loc) • 452 B
JavaScript
// TODO: what should happen (if anything at all?) when an observable terminates?
// Remove the node?
// Emit empty?
//const terminationSink = (node) => node.remove();
// FIXME: This might not even be a Sink...
/**
* Experimental sink for terminating observables
*/
const terminationHandler = () => {
// console.debug('Rimmel: NOOP termination sink called', data);
};
export { terminationHandler };
//# sourceMappingURL=termination-sink.js.map