New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

js-xdr

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

js-xdr - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

lib/unsigned-hyper.js

@@ -27,3 +27,3 @@ "use strict";

_get(_core.Object.getPrototypeOf(UnsignedHyper.prototype), "constructor", this).call(this, low, high, false);
_get(_core.Object.getPrototypeOf(UnsignedHyper.prototype), "constructor", this).call(this, low, high, true);
}

@@ -30,0 +30,0 @@

{
"name": "js-xdr",
"version": "0.0.4",
"version": "0.0.5",
"description": "Read/write XDR encoded data structures (RFC 4506)",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

@@ -37,3 +37,3 @@ import Long from 'long';

constructor(low, high) {
super(low, high, false);
super(low, high, true);
}

@@ -45,3 +45,3 @@ }

UnsignedHyper.MAX_VALUE = new UnsignedHyper(
Long.MAX_UNSIGNED_VALUE.low,
Long.MAX_UNSIGNED_VALUE.low,
Long.MAX_UNSIGNED_VALUE.high

@@ -51,4 +51,4 @@ );

UnsignedHyper.MIN_VALUE = new UnsignedHyper(
Long.MIN_VALUE.low,
Long.MIN_VALUE.low,
Long.MIN_VALUE.high
);

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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