Skip to content

Commit

Permalink
fixup lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rdataflow committed Jan 8, 2025
1 parent edaa9d6 commit 9082ac6
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;
buffer = zstd.decode(new Uint8Array(buffer)).buffer; // eslint-disable-line no-param-reassign, prefer-destructuring

Check failure on line 8 in src/compression/zstd.js

View workflow job for this annotation

GitHub Actions / ci

Multiple spaces found before '// eslint-disa...'
return buffer;
}
}

0 comments on commit 9082ac6

Please sign in to comment.