bc2c9536451584bb30deb7c8ed3d6c9adfd58675
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / _esm2015 / internal / operators / share.js
1 import { multicast } from './multicast';
2 import { refCount } from './refCount';
3 import { Subject } from '../Subject';
4 function shareSubjectFactory() {
5     return new Subject();
6 }
7 export function share() {
8     return (source) => refCount()(multicast(shareSubjectFactory)(source));
9 }
10 //# sourceMappingURL=share.js.map