hugoWebsite/node_modules/rxjs/dist/esm/internal/operators/endWith.js
Jeremy Nusser 0ab675d92b Initial commit... 🎉🎉🎉
2022-10-28 17:20:35 -05:00

6 lines
No EOL
214 B
JavaScript

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