From 7796c473aeb3e14e3d76ef7972727cfee7e20b09 Mon Sep 17 00:00:00 2001 From: Matt Date: Tue, 2 Apr 2019 17:01:47 +0100 Subject: [PATCH] Fix lint issue --- src/core/operations/Bzip2Compress.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/operations/Bzip2Compress.mjs b/src/core/operations/Bzip2Compress.mjs index e0dd9a12..5c029c61 100644 --- a/src/core/operations/Bzip2Compress.mjs +++ b/src/core/operations/Bzip2Compress.mjs @@ -45,7 +45,7 @@ class Bzip2Compress extends Operation { * @returns {File} */ run(input, args) { - const [blockSize, workFactor, filename] = args; + const [blockSize, workFactor] = args; if (input.byteLength <= 0) { throw new OperationError("Please provide an input."); }