Code coverage report for src/symbol/rxSubscriber.ts

Statements: 100% (2 / 2)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (2 / 2)      Ignored: none     

All files » src/symbol/ » rxSubscriber.ts
1 2 3 4 5 6 7 8 9 101               1  
import {SymbolShim} from '../util/SymbolShim';
 
/**
 * rxSubscriber symbol is a symbol for retreiving an "Rx safe" Observer from an object
 * "Rx safety" can be defined as an object that has all of the traits of an Rx Subscriber,
 * including the ability to add and remove subscriptions to the subscription chain and
 * guarantees involving event triggering (can't "next" after unsubscription, etc).
 */
export const rxSubscriber = SymbolShim.for('rxSubscriber');