UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

7 lines (6 loc) 117 B
export function tapObserver(emit, tapFunction) { return value => { tapFunction(value); emit(value); }; }