stream-events
Advanced tools
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 @@ } |
{ | ||
"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" | ||
} | ||
} |
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
5717
134
Updatedstubs@^1.1.0