1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- 'use strict';
- function ZStream() {
-
- this.input = null;
- this.next_in = 0;
-
- this.avail_in = 0;
-
- this.total_in = 0;
-
- this.output = null;
- this.next_out = 0;
-
- this.avail_out = 0;
-
- this.total_out = 0;
-
- this.msg = '';
-
- this.state = null;
-
- this.data_type = 2;
-
- this.adler = 0;
- }
- module.exports = ZStream;
|