Comparing version 0.0.4 to 0.0.5
@@ -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
971132
22894