bin-protocol
Advanced tools
Comparing version 3.0.1 to 3.0.2
@@ -141,2 +141,3 @@ 'use strict'; | ||
write: function (value) { | ||
this.demand(8); | ||
value = Long.fromValue(value); | ||
@@ -156,2 +157,3 @@ this.buffer.writeInt32BE(value.getHighBits(), this.offset); | ||
write: function (value) { | ||
this.demand(8); | ||
value = Long.fromValue(value); | ||
@@ -171,2 +173,3 @@ this.buffer.writeInt32LE(value.getHighBits(), this.offset + 4); | ||
write: function (value) { | ||
this.demand(8); | ||
value = Long.fromValue(value); | ||
@@ -186,2 +189,3 @@ this.buffer.writeUInt32BE(value.getHighBitsUnsigned(), this.offset); | ||
write: function (value) { | ||
this.demand(8); | ||
value = Long.fromValue(value); | ||
@@ -188,0 +192,0 @@ this.buffer.writeUInt32LE(value.getHighBitsUnsigned(), this.offset + 4); |
@@ -9,3 +9,3 @@ { | ||
}, | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"main": "./lib/index.js", | ||
@@ -12,0 +12,0 @@ "keywords": [ |
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
133133
2041