UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

13 lines (12 loc) 262 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tapObserver = void 0; function tapObserver(emit, tapFunction) { return function (value) { tapFunction(value); emit(value); }; } exports.tapObserver = tapObserver;