We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d405e4 commit 74467f9Copy full SHA for 74467f9
blob_util.ts
@@ -355,9 +355,9 @@ export class BlobListIterator extends AsyncIterator implements
355
super();
356
this.#kv = kv;
357
this.#valueKind = valueKind;
358
- const { limit, ...optionsRest } = options;
+ const { limit, cursor, ...optionsRest } = options;
359
this.#options = optionsRest;
360
- this.#iterator = kv.list<BlobMeta>(prefix, optionsRest);
+ this.#iterator = kv.list<BlobMeta>(prefix, { cursor, ...optionsRest });
361
this.#limit = limit;
362
}
363
0 commit comments