[Pkg-javascript-commits] [node-lazystream] 04/06: use require("stream") instead of require("readable-stream")
    Andrew Kelley 
    andrewrk-guest at moszumanska.debian.org
       
    Sat Jun 28 05:57:39 UTC 2014
    
    
  
This is an automated email from the git hooks/post-receive script.
andrewrk-guest pushed a commit to branch master
in repository node-lazystream.
commit a0b28acd99c741b59ccfddd3c80159ab8fab4a2b
Author: Andrew Kelley <superjoe30 at gmail.com>
Date:   Sat Jun 28 05:53:10 2014 +0000
    use require("stream") instead of require("readable-stream")
---
 lib/lazystream.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/lazystream.js b/lib/lazystream.js
index c6fbb39..fb20f56 100644
--- a/lib/lazystream.js
+++ b/lib/lazystream.js
@@ -1,6 +1,6 @@
 
 var util = require('util');
-var PassThrough = require('stream').PassThrough || require('readable-stream/passthrough');
+var PassThrough = require('stream').PassThrough;
 
 module.exports = {
   Readable: Readable,
-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-lazystream.git
    
    
More information about the Pkg-javascript-commits
mailing list