Skip to content

Commit 7794317

Browse files
committed
Removed this. in decodeBlock in Utilities.ts
1 parent 7b91ea5 commit 7794317

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/format/Utilities.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ export const decodeChar = (c) => {
168168
};
169169

170170
export const decodeBlock = (input, inputOffset, output, outputOffset) => {
171-
const bytes = new Uint8Array(this.Encoded_Block_Size);
172-
for (let i = 0; i < this.Encoded_Block_Size; ++i) {
171+
const bytes = new Uint8Array(Encoded_Block_Size);
172+
for (let i = 0; i < Encoded_Block_Size; ++i) {
173173
bytes[i] = decodeChar(input[inputOffset + i]);
174174
}
175175

0 commit comments

Comments
 (0)