Code coverage report for src/add/operator/elementAt.ts

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

All files » src/add/operator/ » elementAt.ts
1 2 3 4 5 6 7 8 9  1 1     1 1    
 
import {Observable} from '../../Observable';
import {elementAt} from '../../operator/elementAt';
import {KitchenSinkOperators} from '../../Rx.KitchenSink';
 
const observableProto = (<KitchenSinkOperators<any>>Observable.prototype);
observableProto.elementAt = elementAt;
 
export var _void: void;