Comparing version 0.3.0 to 0.3.1
12
hexy.js
@@ -0,1 +1,2 @@ | ||
"use strict"; | ||
// # hexy.js -- utility to create hex dumps | ||
@@ -178,3 +179,8 @@ // | ||
// in case these sorts of things interest you. | ||
// | ||
// | ||
// ### 0.3.1 | ||
// | ||
// * use strict | ||
// * fixes undefined var. Thanks m-kircher! | ||
// | ||
// ### 0.3.0 | ||
@@ -285,3 +291,3 @@ // | ||
if (self.html) { | ||
odd = i%2 == 0 ? " even" : " odd" | ||
var odd = i%2 == 0 ? " even" : " odd" | ||
str += "<div class='"+pad(addr, 8)+odd+"'>" | ||
@@ -391,3 +397,3 @@ } | ||
Hexy.VERSION = "0.3.0" | ||
Hexy.VERSION = "0.3.1" | ||
@@ -394,0 +400,0 @@ // This is probably not the prettiest or coolest way to to determine runtime |
{ | ||
"name": "hexy", | ||
"version": "0.3.0", | ||
"version": "0.3.1", | ||
"description": "hexdump, binary pretty-printing", | ||
@@ -19,4 +19,4 @@ "author": "Tim Becker <tim.becker@kuriositaet.de>", | ||
"devDependencies": { | ||
"@types/node": "^10.12.6" | ||
"@types/node": "14.x" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32374
650