rxjs
Version:
Reactive Extensions for modern JavaScript
12 lines (8 loc) • 311 B
text/typescript
import { root } from '../util/root';
const Symbol: any = root.Symbol;
export const rxSubscriber = (typeof Symbol === 'function' && typeof Symbol.for === 'function') ?
Symbol.for('rxSubscriber') : '@@rxSubscriber';
/**
* @deprecated use rxSubscriber instead
*/
export const $$rxSubscriber = rxSubscriber;