chunk-store-stream
Advanced tools
Comparing version 2.0.1 to 2.0.2
{ | ||
"name": "chunk-store-stream", | ||
"description": "Convert an abstract-chunk-store compliant store into a readable or writable stream", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"author": { | ||
@@ -15,3 +15,4 @@ "name": "Feross Aboukhadijeh", | ||
"block-stream2": "^1.0.0", | ||
"inherits": "^2.0.1" | ||
"inherits": "^2.0.1", | ||
"readable-stream": "^2.0.5" | ||
}, | ||
@@ -24,3 +25,3 @@ "devDependencies": { | ||
"memory-chunk-store": "^1.1.1", | ||
"standard": "^5.0.2", | ||
"standard": "^6.0.5", | ||
"string-to-stream": "^1.0.1", | ||
@@ -27,0 +28,0 @@ "tape": "^4.1.0" |
module.exports = ChunkStoreReadStream | ||
var inherits = require('inherits') | ||
var stream = require('stream') | ||
var stream = require('readable-stream') | ||
@@ -6,0 +6,0 @@ inherits(ChunkStoreReadStream, stream.Readable) |
@@ -10,5 +10,5 @@ # chunk-store-stream [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url] | ||
#### Convert an [abstract-chunk-store](https://github.com/mafintosh/abstract-chunk-store) compliant store into a readable or writable stream | ||
#### Convert an [abstract-chunk-store](https://github.com/mafintosh/abstract-chunk-store) store into a readable or writable stream | ||
Read data out of a chunk store, or write data into a chunk store using streams. | ||
Read/write data from/to a chunk store, with streams. | ||
@@ -15,0 +15,0 @@ ## Install |
@@ -5,3 +5,3 @@ module.exports = ChunkStoreWriteStream | ||
var inherits = require('inherits') | ||
var stream = require('stream') | ||
var stream = require('readable-stream') | ||
@@ -8,0 +8,0 @@ inherits(ChunkStoreWriteStream, stream.Writable) |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3
+ Addedreadable-stream@^2.0.5