frontend/.pnpm-store/v3/files/2c/97fa79b1c91c72c4317e710606ecda43d4b70e890cadf5fc8ac9dc130357cb8cced9d12419643f8db937295cc28f02de345350967bee6cc976c3535381e7d3

6 lines
212 B
Plaintext

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