UNPKG

unzip

Version:

Unzip cross-platform streaming API compatible with fstream and fs.ReadStream

14 lines (9 loc) 259 B
'use strict'; module.exports = Entry; var PassThrough = require('readable-stream/passthrough'); var inherits = require('util').inherits; inherits(Entry, PassThrough); function Entry () { PassThrough.call(this, { lowWaterMark: 0 }); this.props = {}; }