Skip to content

Commit a2ccbe3

Browse files
authored
Update explainer.md
1 parent 8faf17c commit a2ccbe3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

explainer.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ of an encoded frame and adds 4 bytes of padding.
119119
flush() {},
120120
async transform(encodedFrame, controller) {
121121
// Reconstruct the original frame.
122-
let view = new DataView(encodedFrame.data);
122+
const view = new DataView(encodedFrame.data);
123123

124124
// Ignore the last 4 bytes
125125
let newData = new ArrayBuffer(encodedFrame.data.byteLength - 4);
@@ -312,4 +312,3 @@ in how the processing elements could be implemented.
312312

313313

314314

315-

0 commit comments

Comments
 (0)