endWith.js 169 B

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