summaryrefslogtreecommitdiff
path: root/src/js/lib/utils.js
diff options
context:
space:
mode:
authorspv <aquaticvegetable@gmail.com>2022-05-08 16:20:09 -0400
committerspv <aquaticvegetable@gmail.com>2022-05-08 16:20:09 -0400
commit6181acb12524b30ddfb7eb75840d1de4ca2ca4b0 (patch)
tree53d729b5b34cd7facc387b8bda16aae0a8ba3d40 /src/js/lib/utils.js
parent41a1e7292997c84643202f3d27a4daa4b02197e4 (diff)
wip
Diffstat (limited to 'src/js/lib/utils.js')
-rw-r--r--src/js/lib/utils.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/js/lib/utils.js b/src/js/lib/utils.js
index 361e71d..dfdf38a 100644
--- a/src/js/lib/utils.js
+++ b/src/js/lib/utils.js
@@ -30,6 +30,7 @@ function unhexlify(hexstr) {
return bytes;
}
+/*
function hexdump(data) {
if (typeof data.BYTES_PER_ELEMENT !== 'undefined')
data = Array.from(data);
@@ -44,7 +45,7 @@ function hexdump(data) {
}
return lines.join('\n');
-}
+}*/
// Simplified version of the similarly named python module.
var Struct = (function() {