File: readable-stream.patch

package info (click to toggle)
node-concat-stream 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 164 kB
  • ctags: 27
  • sloc: makefile: 2; sh: 2
file content (13 lines) | stat: -rw-r--r-- 517 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: Use nodejs stream module instead of readable-stream
 The nodejs Stream module is "stable" in nodejs v4.2.1 (LTS)
 so readable-stream is not required and will no longer be packaged.
Forwarded: not-needed
Author: Ross Gammon <rossgammon@mail.dk>
--- node-concat-stream.orig/index.js
+++ node-concat-stream/index.js
@@ -1,4 +1,4 @@
-var Writable = require('readable-stream').Writable
+var Writable = require('stream').Writable
 var inherits = require('inherits')
 
 if (typeof Uint8Array === 'undefined') {