source: trip-planner-front/node_modules/rxjs/_esm5/internal/operators/endWith.js@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 424 bytes
Line 
1/** PURE_IMPORTS_START _observable_concat,_observable_of PURE_IMPORTS_END */
2import { concat } from '../observable/concat';
3import { of } from '../observable/of';
4export function endWith() {
5 var array = [];
6 for (var _i = 0; _i < arguments.length; _i++) {
7 array[_i] = arguments[_i];
8 }
9 return function (source) { return concat(source, of.apply(void 0, array)); };
10}
11//# sourceMappingURL=endWith.js.map
Note: See TracBrowser for help on using the repository browser.