blob: cf52a35e5d3e52c3f5ca71cb1d76b0266c867257 [file] [log] [blame]
import { concat } from '../observable/concat';
import { of } from '../observable/of';
export function endWith(...array) {
return (source) => concat(source, of(...array));
}
//# sourceMappingURL=endWith.js.map