mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
Fix lint issue
This commit is contained in:
@@ -45,7 +45,7 @@ class Bzip2Compress extends Operation {
|
|||||||
* @returns {File}
|
* @returns {File}
|
||||||
*/
|
*/
|
||||||
run(input, args) {
|
run(input, args) {
|
||||||
const [blockSize, workFactor, filename] = args;
|
const [blockSize, workFactor] = args;
|
||||||
if (input.byteLength <= 0) {
|
if (input.byteLength <= 0) {
|
||||||
throw new OperationError("Please provide an input.");
|
throw new OperationError("Please provide an input.");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user