瀏覽代碼

byte length argument added to ToBinary

n1073645 4 年之前
父節點
當前提交
9dba1232b7
共有 1 個文件被更改,包括 7 次插入1 次删除
  1. 7 1
      src/core/operations/ToBinary.mjs

+ 7 - 1
src/core/operations/ToBinary.mjs

@@ -31,6 +31,11 @@ class ToBinary extends Operation {
                 "name": "Delimiter",
                 "type": "option",
                 "value": BIN_DELIM_OPTIONS
+            },
+            {
+                "name": "Byte Length",
+                "type": "number",
+                "value": 8
             }
         ];
     }
@@ -42,7 +47,8 @@ class ToBinary extends Operation {
      */
     run(input, args) {
         input = new Uint8Array(input);
-        return toBinary(input, args[0]);
+        const padding = args[1] ? args[1] : 8;
+        return toBinary(input, args[0], padding);
     }
 
     /**