Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 21x 21x 21x 21x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 21x 21x | const Streamz = require('streamz');
const chain = require('./chain');
const fs = require('fs');
function toFile(filename) {
return chain(inStream => {
const stream = Streamz();
inStream
.pipe(fs.createWriteStream(filename))
.on('error',e => stream.emit('error',e))
.on('finish',() => stream.end(true));
return stream;
});
}
module.exports = toFile; |