summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/src/internal/symbol/rxSubscriber.ts
blob: 7b009232a21fab4d9bd25b2f83b36a52081b8a29 (plain)
1
2
3
4
5
6
7
8
9
export const rxSubscriber =
  (typeof Symbol === 'function' && typeof Symbol.for === 'function')
    ? Symbol.for('rxSubscriber')
    : '@@rxSubscriber';

/**
 * @deprecated use rxSubscriber instead
 */
export const $$rxSubscriber = rxSubscriber;