Browse Source

Fix lint issue

Matt 6 năm trước cách đây
mục cha
commit
7796c473ae
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/core/operations/Bzip2Compress.mjs

+ 1 - 1
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.");
         }