From ee83912dcd4140ae16e72fad060b8cca21665787 Mon Sep 17 00:00:00 2001 From: Justin Fisher Date: Sun, 13 Jul 2025 12:18:46 -0400 Subject: [PATCH] added use strict to hexdump.js --- hexdump.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hexdump.js b/hexdump.js index 2eec2e4..0ac08ce 100644 --- a/hexdump.js +++ b/hexdump.js @@ -1,3 +1,5 @@ +'use strict' + const wout = (s) => { process.stdout.write(s) }