[Pkg-javascript-commits] [node-crc32-stream] 03/07: require('stream') instead of require('readable-stream')

Andrew Kelley andrewrk-guest at moszumanska.debian.org
Sat Jun 28 22:22:59 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-crc32-stream.

commit eb4c181fd2eed930dd27c5288e95b22958c6910d
Author: Andrew Kelley <superjoe30 at gmail.com>
Date:   Sat Jun 28 22:03:21 2014 +0000

    require('stream') instead of require('readable-stream')
---
 lib/crc32-stream.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/crc32-stream.js b/lib/crc32-stream.js
index f13aa68..2aa8965 100644
--- a/lib/crc32-stream.js
+++ b/lib/crc32-stream.js
@@ -6,7 +6,7 @@
  * https://github.com/ctalkington/node-crc32-stream/blob/master/LICENSE-MIT
  */
 var inherits = require('util').inherits;
-var Transform = require('readable-stream').Transform;
+var Transform = require('stream').Transform;
 
 var crc32 = require('buffer-crc32');
 
@@ -41,4 +41,4 @@ CRC32Stream.prototype.size = function() {
   return this.rawSize;
 };
 
-module.exports = CRC32Stream;
\ No newline at end of file
+module.exports = CRC32Stream;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-crc32-stream.git



More information about the Pkg-javascript-commits mailing list