mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-16 23:33:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
22
node_modules/rxjs/_esm2015/operators/publish.js
generated
vendored
Normal file
22
node_modules/rxjs/_esm2015/operators/publish.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
import { Subject } from '../Subject';
|
||||
import { multicast } from './multicast';
|
||||
/* tslint:enable:max-line-length */
|
||||
/**
|
||||
* Returns a ConnectableObservable, which is a variety of Observable that waits until its connect method is called
|
||||
* before it begins emitting items to those Observers that have subscribed to it.
|
||||
*
|
||||
* <img src="./img/publish.png" width="100%">
|
||||
*
|
||||
* @param {Function} [selector] - Optional selector function which can use the multicasted source sequence as many times
|
||||
* as needed, without causing multiple subscriptions to the source sequence.
|
||||
* Subscribers to the given source will receive all notifications of the source from the time of the subscription on.
|
||||
* @return A ConnectableObservable that upon connection causes the source Observable to emit items to its Observers.
|
||||
* @method publish
|
||||
* @owner Observable
|
||||
*/
|
||||
export function publish(selector) {
|
||||
return selector ?
|
||||
multicast(() => new Subject(), selector) :
|
||||
multicast(new Subject());
|
||||
}
|
||||
//# sourceMappingURL=publish.js.map
|
||||
Reference in New Issue
Block a user