Files
FloatApi/node_modules/rxjs/_esm2015/internal/operators/endWith.js
T
2022-03-07 22:07:57 +07: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