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

bin-protocol

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bin-protocol - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

4

lib/index.js

@@ -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);

2

package.json

@@ -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

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