initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
17
node_modules/rxjs/dist/esm5/internal/operators/connect.js
generated
vendored
Normal file
17
node_modules/rxjs/dist/esm5/internal/operators/connect.js
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { Subject } from '../Subject';
|
||||
import { innerFrom } from '../observable/innerFrom';
|
||||
import { operate } from '../util/lift';
|
||||
import { fromSubscribable } from '../observable/fromSubscribable';
|
||||
var DEFAULT_CONFIG = {
|
||||
connector: function () { return new Subject(); },
|
||||
};
|
||||
export function connect(selector, config) {
|
||||
if (config === void 0) { config = DEFAULT_CONFIG; }
|
||||
var connector = config.connector;
|
||||
return operate(function (source, subscriber) {
|
||||
var subject = connector();
|
||||
innerFrom(selector(fromSubscribable(subject))).subscribe(subscriber);
|
||||
subscriber.add(source.subscribe(subject));
|
||||
});
|
||||
}
|
||||
//# sourceMappingURL=connect.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue