Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

6 lines
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