Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 8b06539

Browse files
Use readable-stream for consistent stream API.
1 parent def1aa1 commit 8b06539

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

lib/MemoryFileSystem.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
var normalize = require("./normalize");
7-
var stream = require("stream");
7+
var stream = require("readable-stream");
88

99
var ReadableStream = stream.Readable;
1010
var WritableStream = stream.Writable;

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,8 @@
2929
"istanbul": "^0.2.13",
3030
"mocha": "^1.20.1",
3131
"should": "^4.0.4"
32+
},
33+
"dependencies": {
34+
"readable-stream": "^2.0.1"
3235
}
3336
}

0 commit comments

Comments
 (0)