Variable name

This commit is contained in:
Andy Wang 2020-01-17 18:47:46 +00:00
parent 6dbaf6a36c
commit 23956480b7

View File

@ -51,8 +51,10 @@ class ToHex extends Operation {
*/
run(input, args) {
const delim = Utils.charRep(args[0] || "Space");
const lineSize = args[1];
const comma = args[2] ? "," : "";
return toHex(new Uint8Array(input), delim, 2, comma, args[1]);
return toHex(new Uint8Array(input), delim, 2, comma, lineSize);
}
/**