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

protobuf.js

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

protobuf.js - npm Package Compare versions

Comparing version 0.0.16 to 0.0.17

10

index.js

@@ -190,9 +190,9 @@ var fs = require('fs'),

if (params[key].length > 0) {
var ret = [];
var ret;
params[key].forEach(function (item) {
ret = ret.concat(self.encode(schema[key].raw_type, item));
bytes.push((schema[key].field << 3) + schema[key].type);
ret = self.encode(schema[key].raw_type, item);
butils.writeVarint(bytes, ret.length, bytes.length);
bytes = bytes.concat(ret);
});
bytes.push((schema[key].field << 3) + schema[key].type);
butils.writeVarint(bytes, ret.length, bytes.length);
bytes = bytes.concat(ret);
}

@@ -199,0 +199,0 @@ } else {

{
"name": "protobuf.js",
"version": "0.0.16",
"version": "0.0.17",
"description": "a pure javascript protocol buffer encoding implementation, written specifically for riak",

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

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