diff options
Diffstat (limited to 'op_crates/web/21_filereader.js')
-rw-r--r-- | op_crates/web/21_filereader.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/op_crates/web/21_filereader.js b/op_crates/web/21_filereader.js index c82c52864..eee96e9d8 100644 --- a/op_crates/web/21_filereader.js +++ b/op_crates/web/21_filereader.js @@ -61,7 +61,7 @@ if (!chunk.done && chunk.value instanceof Uint8Array) { chunks.push(chunk.value); - // TODO: (only) If roughly 50ms have passed since last progress + // TODO(bartlomieju): (only) If roughly 50ms have passed since last progress { const size = chunks.reduce((p, i) => p + i.byteLength, 0); const ev = new ProgressEvent("progress", { |