wishthis/node_modules/rxjs/_esm2015/internal/operators/endWith.js
2022-01-21 09:28:41 +01:00

6 lines
No EOL
212 B
JavaScript

import { concat } from '../observable/concat';
import { of } from '../observable/of';
export function endWith(...array) {
return (source) => concat(source, of(...array));
}
//# sourceMappingURL=endWith.js.map