UNPKG

rxjs-compat

Version:

<img src="doc/asset/Rx_Logo_S.png" alt="RxJS Logo" width="86" height="86"> RxJS: Reactive Extensions For JavaScript ======================================

6 lines 330 B
import { expand as higherOrder } from 'rxjs/operators'; export function expand(project, concurrent = Number.POSITIVE_INFINITY, scheduler = undefined) { concurrent = (concurrent || 0) < 1 ? Number.POSITIVE_INFINITY : concurrent; return higherOrder(project, concurrent, scheduler)(this); } //# sourceMappingURL=expand.js.map