(
inputs: any[], zipFn: (xs: any[]) => DeepMapResult = zipToList)
| 131 | * arrays at the leaves. |
| 132 | */ |
| 133 | export function deepZip( |
| 134 | inputs: any[], zipFn: (xs: any[]) => DeepMapResult = zipToList): any|any[] { |
| 135 | return deepZipInternal(inputs, zipFn); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * @param containedIn: An set containing objects on the reference path currently |
no test coverage detected
searching dependent graphs…