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

stream-events

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-events - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

11

index.js

@@ -18,4 +18,11 @@ 'use strict';

stream = stream || this
stubs(stream, '_read', true, stream.emit.bind(stream, 'reading'))
stubs(stream, '_write', true, stream.emit.bind(stream, 'writing'))
var cfg = {
callthrough: true,
calls: 1
}
stubs(stream, '_read', cfg, stream.emit.bind(stream, 'reading'))
stubs(stream, '_write', cfg, stream.emit.bind(stream, 'writing'))
return stream

@@ -22,0 +29,0 @@ }

4

package.json
{
"name": "stream-events",
"version": "1.0.0",
"version": "1.0.1",
"description": "Get an event when you're being sent data or asked for it.",

@@ -31,4 +31,4 @@ "main": "index.js",

"dependencies": {
"stubs": "^1.0.0"
"stubs": "^1.1.0"
}
}
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