@lifaon/rx-js-light
Version:
Blazing fast Observables
13 lines (12 loc) • 551 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.notificationsToValuesObservablePipe = void 0;
var notifications_to_values_observable_1 = require("./notifications-to-values-observable.cjs");
function notificationsToValuesObservablePipe(onError, maxNumberOfValues) {
return function (subscribe) {
return (0, notifications_to_values_observable_1.notificationsToValuesObservable)(subscribe, onError, maxNumberOfValues);
};
}
exports.notificationsToValuesObservablePipe = notificationsToValuesObservablePipe;