@lifaon/rx-js-light
Version:
Blazing fast Observables
6 lines (5 loc) • 297 B
JavaScript
import {throwError} from "../../../../../../built-in/from/with-notifications/others/throw-error/throw-error.mjs";
import {thenObservable} from "../../then-observable.mjs";
export function fulfilledObservable(subscribe, onFulfilled) {
return thenObservable(subscribe, onFulfilled, throwError);
}