frontend/.pnpm-store/v3/files/ae/0db935d2762857cc9d9e513baadd90311f5efbfd2d049cc074ec88d124ade460a526766db7ee3bb0ffb3ef15d03ba64b1a482079a914ab6f22b30856cc99a7

6 lines
214 B
Plaintext

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