Socket
Socket
Sign inDemoInstall

msgpack5

Package Overview
Dependencies
9
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.1.0 to 3.2.0

2

lib/encoder.js

@@ -96,3 +96,3 @@

buf.writeUInt16BE(obj, 1)
} else if (obj < 0xffffffff) {
} else if (obj <= 0xffffffff) {
buf = new Buffer(5)

@@ -99,0 +99,0 @@ buf[0] = 0xce

{
"name": "msgpack5",
"version": "3.1.0",
"version": "3.2.0",
"description": "A msgpack v5 implementation for node.js and the browser, with extension points",

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

@@ -140,3 +140,3 @@ msgpack5&nbsp;&nbsp;[![Build Status](https://travis-ci.org/mcollina/msgpack5.png)](https://travis-ci.org/mcollina/msgpack5)

Register a new custom objet type for being automatically decoded.
Register a new custom object type for being automatically decoded.
The arguments are:

@@ -153,3 +153,3 @@

Register a new custom objet type for being automatically encoded and
Register a new custom object type for being automatically encoded and
decoded. The arguments are:

@@ -156,0 +156,0 @@

@@ -16,2 +16,3 @@

allNum.push(0xfffffffe)
allNum.push(0xffffffff)

@@ -18,0 +19,0 @@ allNum.forEach(function(num) {

@@ -10,3 +10,3 @@

allNum.push(0xffffffff)
allNum.push(0x0000000100000000)

@@ -13,0 +13,0 @@ allNum.push(0xffffffffeeeee)

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc