Also allow undefined, which means at the end of the paginated direction

we already detect the end by chunk.length===0, so we just need to not throw
This commit is contained in:
Bruno Windels 2022-06-25 19:33:47 +02:00
parent 623939c671
commit 84bac0afe9
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ export class GapWriter {
if (!Array.isArray(chunk)) {
throw new Error("Invalid chunk in response");
}
if (typeof end !== "string") {
if (typeof end !== "string" && typeof end !== "undefined") {
throw new Error("Invalid end token in response");
}