We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba052d commit 04f6081Copy full SHA for 04f6081
src/main.worker.ts
@@ -52,7 +52,7 @@ const stdin = (): number | null => {
52
console.error("Try to fetch exhausted stdin");
53
return null;
54
}
55
- const nextChunk = /** @type {string} */ stdinChunks.shift();
+ const nextChunk = stdinChunks.shift()!;
56
currentStdinChunk.push(...textEncoder.encode(nextChunk), null);
57
58
return currentStdinChunk.shift()!;
0 commit comments