Socket
Socket
Sign inDemoInstall

socket.io-parser

Package Overview
Dependencies
3
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 2.1.3 to 2.1.4

4

binary.js

@@ -64,3 +64,3 @@ /**

function reconstructBinPackRecursive(data) {
if (data._placeholder) {
if (data && data._placeholder) {
var buf = buffers[data.num]; // appropriate buffer (should be natural order anyway)

@@ -73,3 +73,3 @@ return buf;

return data;
} else if ('object' == typeof data) {
} else if (data && 'object' == typeof data) {
for (var key in data) {

@@ -76,0 +76,0 @@ data[key] = reconstructBinPackRecursive(data[key]);

2.1.4 / 2014-05-17
==================
* fix null reconstruction bug [kevin-roark]
2.1.3 / 2014-04-27

@@ -3,0 +8,0 @@ ==================

{
"name": "socket.io-parser",
"version": "2.1.3",
"version": "2.1.4",
"description": "socket.io protocol parser",

@@ -5,0 +5,0 @@ "repository": {

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