Sha256: 821a31c8a130e44fd4c16306eb788bf4aee1cd98a5d2aa81d482d97c2a18b345

Contents?: true

Size: 851 Bytes

Versions: 11

Compression:

Stored size: 851 Bytes

Contents

'use strict';


function ZStream() {
  /* next input byte */
  this.input = null; // JS specific, because we have no pointers
  this.next_in = 0;
  /* number of bytes available at input */
  this.avail_in = 0;
  /* total number of input bytes read so far */
  this.total_in = 0;
  /* next output byte should be put there */
  this.output = null; // JS specific, because we have no pointers
  this.next_out = 0;
  /* remaining free space at output */
  this.avail_out = 0;
  /* total number of bytes output so far */
  this.total_out = 0;
  /* last error message, NULL if no error */
  this.msg = ''/*Z_NULL*/;
  /* not visible by applications */
  this.state = null;
  /* best guess about the data type: binary or text */
  this.data_type = 2/*Z_UNKNOWN*/;
  /* adler32 value of the uncompressed data */
  this.adler = 0;
}

module.exports = ZStream;

Version data entries

11 entries across 11 versions & 4 rubygems

Version Path
lanes-0.8.0 node_modules/pako/lib/zlib/zstream.js
minimum_viable_product-0.0.11 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.6 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.5 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.4 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.3 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.2 test/dummy/node_modules/pako/lib/zlib/zstream.js
brwy_rails-0.0.1 test/dummy/node_modules/pako/lib/zlib/zstream.js
gulp_assets-1.0.0.pre.5 template/node_modules/node-libs-browser/node_modules/browserify-zlib/node_modules/pako/lib/zlib/zstream.js
gulp_assets-1.0.0.pre.4 template/node_modules/node-libs-browser/node_modules/browserify-zlib/node_modules/pako/lib/zlib/zstream.js
gulp_assets-1.0.0.pre.3 template/node_modules/node-libs-browser/node_modules/browserify-zlib/node_modules/pako/lib/zlib/zstream.js