summaryrefslogtreecommitdiff
path: root/runtime/js/12_io.js
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/js/12_io.js')
-rw-r--r--runtime/js/12_io.js11
1 files changed, 9 insertions, 2 deletions
diff --git a/runtime/js/12_io.js b/runtime/js/12_io.js
index 8df3de92f..d2b2127a6 100644
--- a/runtime/js/12_io.js
+++ b/runtime/js/12_io.js
@@ -110,9 +110,12 @@
const READ_PER_ITER = 32 * 1024;
async function readAll(r) {
+ return await readAllInner(r);
+ }
+ async function readAllInner(r, options) {
const buffers = [];
-
- while (true) {
+ const signal = options?.signal ?? null;
+ while (!signal?.aborted) {
const buf = new Uint8Array(READ_PER_ITER);
const read = await r.read(buf);
if (typeof read == "number") {
@@ -121,6 +124,9 @@
break;
}
}
+ if (signal?.aborted) {
+ throw new DOMException("The read operation was aborted.", "AbortError");
+ }
let totalLen = 0;
for (const buf of buffers) {
@@ -177,6 +183,7 @@
write,
writeSync,
readAll,
+ readAllInner,
readAllSync,
};
})(this);