falcor-observable
Version:
An Observable implementation compatible with the Falcor DataSource API. Avoids try/catch.
12 lines (8 loc) • 304 B
JavaScript
// @flow
;
import type { ObservableInput, OperatorFunction } from "../es-observable.js";
const { _mergeMap } = require("./mergeMap");
function concatAll<T, E>(): OperatorFunction<ObservableInput<T, E>, T, E> {
return _mergeMap(undefined, undefined, 1);
}
module.exports = { concatAll };