Skip to content

Commit 83449d6

Browse files
committed
cleanup
1 parent 052af55 commit 83449d6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

lib/tdf3/src/tdf.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1357,12 +1357,7 @@ export async function readStream(cfg: DecryptConfiguration) {
13571357
}
13581358

13591359
async function concatenateUint8Array(uint8arrays: Uint8Array[]): Promise<Uint8Array> {
1360-
// Put the inputs into a Blob.
13611360
const blob = new Blob(uint8arrays);
1362-
1363-
// Pull an ArrayBuffer out. (Has to be async.)
13641361
const buffer = await blob.arrayBuffer();
1365-
1366-
// Convert that ArrayBuffer to a Uint8Array.
13671362
return new Uint8Array(buffer);
13681363
}

0 commit comments

Comments
 (0)