Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hexy

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hexy - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

dist/index.js

8

hexy.js

@@ -193,2 +193,6 @@ "use strict";

//
// ### 0.3.4
//
// * issue concerning static analysis and BigInt usage
//
// ### 0.3.3

@@ -387,3 +391,3 @@ //

} else {
val = val * 256n + BigInt((buffer.constructor == String ? buffer.codePointAt(i) : buffer[i]) & 0xff)
val = BigInt(val) * 256n + BigInt(((buffer.constructor == String ? buffer.codePointAt(i) : buffer[i]) & 0xff))
}

@@ -447,3 +451,3 @@ }

Hexy.VERSION = "0.3.3"
Hexy.VERSION = "0.3.4"

@@ -450,0 +454,0 @@ var maxnumberlen = function(bytes, radix) {

{
"name": "hexy",
"version": "0.3.3",
"version": "0.3.4",
"description": "hexdump, binary pretty-printing",

@@ -5,0 +5,0 @@ "author": "Tim Becker <tim.becker@kuriositaet.de>",

@@ -180,2 +180,6 @@ [![build status](https://api.travis-ci.com/a2800276/hexy.js.svg)](https://app.travis-ci.com/github/a2800276/hexy.js)

### 0.3.4
* issue concerning static analysis and BigInt usage
### 0.3.3

@@ -182,0 +186,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc