12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- 'use strict';
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- function GZheader() {
-
- this.text = 0;
-
- this.time = 0;
-
- this.xflags = 0;
-
- this.os = 0;
-
- this.extra = null;
-
- this.extra_len = 0;
-
-
-
-
-
-
-
-
-
-
- this.name = '';
-
-
-
- this.comment = '';
-
-
-
- this.hcrc = 0;
-
- this.done = false;
- }
-
- module.exports = GZheader;
|