engine.io
Advanced tools
Comparing version 1.8.0 to 1.8.1
1.8.1 / 2016-11-27 | ||
=================== | ||
* [fix] Only add defined callbacks to the stack (#447) | ||
1.8.0 / 2016-11-20 | ||
@@ -3,0 +8,0 @@ =================== |
@@ -396,4 +396,4 @@ /** | ||
// add send callback to object | ||
this.packetsFn.push(callback); | ||
// add send callback to object, if defined | ||
if (callback) this.packetsFn.push(callback); | ||
@@ -400,0 +400,0 @@ this.flush(); |
{ | ||
"name": "engine.io", | ||
"version": "1.8.0", | ||
"version": "1.8.1", | ||
"description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server", | ||
@@ -38,3 +38,3 @@ "main": "./lib/engine.io", | ||
"babel-preset-es2015": "6.3.13", | ||
"engine.io-client": "1.8.0", | ||
"engine.io-client": "1.8.1", | ||
"eslint-config-standard": "4.4.0", | ||
@@ -41,0 +41,0 @@ "eslint-plugin-standard": "1.3.2", |
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
77842