1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: readable-stream is only needed for nodejs 0.8 compat
Author: Leo Iannacone <l3on@ubuntu.com>
Forwarded: not-needed
---
through2.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/through2.js
+++ b/through2.js
@@ -1,4 +1,4 @@
-var Transform = require('readable-stream/transform')
+var Transform = require('stream').Transform
, inherits = require('util').inherits
, xtend = require('xtend')
|