(iterator: Dataset<T>|
LazyIterator<T>)
| 526 | // Check if provided object is a LazyIterator object by checking it's .next |
| 527 | // element. |
| 528 | function isLazyIteratorObject<T>(iterator: Dataset<T>| |
| 529 | LazyIterator<T>): boolean { |
| 530 | return (typeof (iterator as LazyIterator<T>).next === 'function'); |
| 531 | } |
| 532 | |
| 533 | export async function evaluateDataset<T>( |
| 534 | // Type `model` as `any` here to avoid circular dependency w/ |
no outgoing calls
no test coverage detected
searching dependent graphs…