{“ast”:null,“code”:“'use strict'; // (C) 1995-2013 Jean-loup Gailly and Mark Adlern// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsinn//n// This software is provided 'as-is', without any express or impliedn// warranty. In no event will the authors be held liable for any damagesn// arising from the use of this software.n//n// Permission is granted to anyone to use this software for any purpose,n// including commercial applications, and to alter it and redistribute itn// freely, subject to the following restrictions:n//n// 1. The origin of this software must not be misrepresented; you must notn// claim that you wrote the original software. If you use this softwaren// in a product, an acknowledgment in the product documentation would ben// appreciated but is not required.n// 2. Altered source versions must be plainly marked as such, and must not ben// misrepresented as being the original software.n// 3. This notice may not be removed or altered from any source distribution.nnfunction ZStream() {n /* next input byte */n this.input = null; // JS specific, because we have no pointersnn this.next_in = 0;n /* number of bytes available at input */nn this.avail_in = 0;n /* total number of input bytes read so far */nn this.total_in = 0;n /* next output byte should be put there */nn this.output = null; // JS specific, because we have no pointersnn this.next_out = 0;n /* remaining free space at output */nn this.avail_out = 0;n /* total number of bytes output so far */nn this.total_out = 0;n /* last error message, NULL if no error */nn this.msg = ''n /Z_NULL/n ;n /* not visible by applications */nn this.state = null;n /* best guess about the data type: binary or text */nn this.data_type = 2n /Z_UNKNOWN/n ;n /* adler32 value of the uncompressed data */nn this.adler = 0;n}nnmodule.exports = ZStream;”,“map”:null,“metadata”:{},“sourceType”:“module”}