mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 17:08:31 +01:00
Fix lint issue
This commit is contained in:
parent
8445165491
commit
7796c473ae
1 changed files with 1 additions and 1 deletions
|
@ -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.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue