97fa79b1c91c72c4317e710606ecda43d4b70e890cadf5fc8ac9dc130357cb8cced9d12419643f8db937295cc28f02de345350967bee6cc976c3535381e7d3 212 B

123456
  1. import { concat } from '../observable/concat';
  2. import { of } from '../observable/of';
  3. export function endWith(...array) {
  4. return (source) => concat(source, of(...array));
  5. }
  6. //# sourceMappingURL=endWith.js.map