diff options
Diffstat (limited to 'node_modules/rxjs/dist/esm/internal/operators/endWith.js')
| -rw-r--r-- | node_modules/rxjs/dist/esm/internal/operators/endWith.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/node_modules/rxjs/dist/esm/internal/operators/endWith.js b/node_modules/rxjs/dist/esm/internal/operators/endWith.js new file mode 100644 index 0000000..b3d3719 --- /dev/null +++ b/node_modules/rxjs/dist/esm/internal/operators/endWith.js @@ -0,0 +1,6 @@ +import { concat } from '../observable/concat'; +import { of } from '../observable/of'; +export function endWith(...values) { + return (source) => concat(source, of(...values)); +} +//# sourceMappingURL=endWith.js.map
\ No newline at end of file |
