summaryrefslogtreecommitdiff
path: root/src/js/lib/utils.js
diff options
context:
space:
mode:
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() {