Code coverage report for src/operator/extended/find.ts

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

All files » src/operator/extended/ » find.ts
1 2 3 4 5 6 71     1 6    
import {FindValueOperator} from './find-support';
import {Observable} from '../../Observable';
 
export function find<T>(predicate: (value: T, index: number, source: Observable<T>) => boolean, thisArg?: any): Observable<T> {
  return this.lift(new FindValueOperator(predicate, this, false, thisArg));
}