Skip to content

Commit

Permalink
fixup spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Rdataflow committed Jan 8, 2025
1 parent 9082ac6 commit 20e30af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compression/zstd.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const zstd = new ZSTDDecoder();

export default class ZstdDecoder extends BaseDecoder {
decodeBlock(buffer) {
buffer = zstd.decode(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring
buffer = zstd.decode(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring
return buffer;
}
}

0 comments on commit 20e30af

Please sign in to comment.