Code coverage report for src/Operator.ts

Statements: 83.33% (5 / 6)      Branches: 100% (0 / 0)      Functions: 50% (1 / 2)      Lines: 80% (4 / 5)      Ignored: none     

All files » src/ » Operator.ts
1 2 3 4 5 6 7 81   2 1     1  
import {Subscriber} from './Subscriber';
 
export class Operator<T, R> {
  call<T, R>(subscriber: Subscriber<R>): Subscriber<T> {
    return new Subscriber<T>(subscriber);
  }
}