blob: c1d0bf648ec41e4a40366c328b521f3e35fe5169 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
import { __read, __spreadArray } from "tslib";
import { concat } from './concat';
export function concatWith() {
var otherSources = [];
for (var _i = 0; _i < arguments.length; _i++) {
otherSources[_i] = arguments[_i];
}
return concat.apply(void 0, __spreadArray([], __read(otherSources)));
}
//# sourceMappingURL=concatWith.js.map
|