Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

socket.io-stream

Package Overview
Dependencies
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

socket.io-stream - npm Package Compare versions

Comparing version 0.5.0 to 0.5.1

5

lib/iostream.js

@@ -76,2 +76,5 @@ var util = require('util')

// We can not read from the socket if it's destroyed obviously ...
if(this.destroyed) return;
if (this.pushBuffer.length) {

@@ -119,2 +122,4 @@ // flush buffer and end if it exists.

function write() {
// We can not write to the socket if it's destroyed obviously ...
if(self.destroyed) return;
self._writable = false;

@@ -121,0 +126,0 @@ self.socket._write(self.id, chunk, encoding, callback);

2

package.json
{
"name": "socket.io-stream",
"version": "0.5.0",
"version": "0.5.1",
"description": "stream for socket.io",

@@ -5,0 +5,0 @@ "author": "Naoyuki Kanezawa <naoyuki.kanezawa@gmail.com>",

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