UNPKG

batch-mobile

Version:

Asynchronous batched iterable for (mongo) cursors

9 lines (7 loc) 203 B
export type Cursor = { next: Promise<any> } export default class BatchedCursor { static getBatchedIterableFromCursor(cursor: Cursor, batchSize: number) : AsyncGenerator<any[], void, unknown>; }