0db935d2762857cc9d9e513baadd90311f5efbfd2d049cc074ec88d124ade460a526766db7ee3bb0ffb3ef15d03ba64b1a482079a914ab6f22b30856cc99a7 214 B

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