Socket
Socket
Sign inDemoInstall

engine.io-parser

Package Overview
Dependencies
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

engine.io-parser - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

8

CHANGELOG.md

@@ -0,1 +1,9 @@

## [4.0.3](https://github.com/socketio/engine.io-parser/compare/4.0.2...4.0.3) (2021-08-29)
### Bug Fixes
* respect the offset and length of TypedArray objects ([6d7dd76](https://github.com/socketio/engine.io-parser/commit/6d7dd76130690afda6c214d5c04305d2bbc4eb4d))
## [4.0.2](https://github.com/socketio/engine.io-parser/compare/4.0.1...4.0.2) (2020-12-07)

@@ -2,0 +10,0 @@

2

lib/encodePacket.browser.js

@@ -28,3 +28,3 @@ const { PACKET_TYPES } = require("./commons");

if (supportsBinary) {
return callback(data instanceof ArrayBuffer ? data : data.buffer);
return callback(data);
} else {

@@ -31,0 +31,0 @@ return encodeBlobAsBase64(new Blob([data]), callback);

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

"license": "MIT",
"version": "4.0.2",
"version": "4.0.3",
"main": "lib/index.js",

@@ -8,0 +8,0 @@ "homepage": "https://github.com/socketio/engine.io-parser",

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