UNPKG

falcor-observable

Version:

An Observable implementation compatible with the Falcor DataSource API. Avoids try/catch.

12 lines (8 loc) 304 B
// @flow "use strict"; 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 };