Socket
Socket
Sign inDemoInstall

engine.io-client

Package Overview
Dependencies
Maintainers
2
Versions
158
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

engine.io-client - npm Package Compare versions

Comparing version 3.1.5 to 3.2.0

8

lib/transports/polling-xhr.js

@@ -361,7 +361,5 @@ /**

if (contentType === 'application/octet-stream') {
if (this.xhr.responseType === 'arraybuffer') {
data = this.xhr.response || this.xhr.responseText;
} else {
data = String.fromCharCode.apply(null, new Uint8Array(this.xhr.response));
}
data = this.xhr.response || this.xhr.responseText;
} else if (this.xhr.responseType === 'arraybuffer') {
data = String.fromCharCode.apply(null, new Uint8Array(this.xhr.response));
} else {

@@ -368,0 +366,0 @@ data = this.xhr.responseText;

@@ -5,3 +5,3 @@ {

"license": "MIT",
"version": "3.1.5",
"version": "3.2.0",
"main": "lib/index.js",

@@ -49,3 +49,3 @@ "homepage": "https://github.com/socketio/engine.io-client",

"derequire": "^2.0.6",
"engine.io": "3.1.5",
"engine.io": "3.2.0",
"eslint-config-standard": "4.4.0",

@@ -63,2 +63,3 @@ "eslint-plugin-standard": "1.3.1",

"mocha": "^3.2.0",
"socket.io-browsers": "^1.0.0",
"webpack": "1.12.12",

@@ -65,0 +66,0 @@ "webpack-stream": "^3.2.0",

Sorry, the diff of this file is too big to display

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