Code coverage report for src/operator/zipAll.ts

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

All files » src/operator/ » zipAll.ts
1 2 3 4 5 61   1 47    
import {ZipOperator} from './zip-support';
 
export function zipAll<T, R>(project?: (...values: Array<any>) => R) {
  return this.lift(new ZipOperator(project));
}