dist rebuild

This commit is contained in:
Vitaly Puzrin 2020-11-19 02:48:28 +03:00
parent d0382badcc
commit b3861d9a66
13 changed files with 330 additions and 182 deletions

108
dist/pako.es5.js vendored
View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
//
@ -3842,12 +3842,12 @@
var deflateSetDictionary_1 = deflateSetDictionary;
var deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateParams = deflateParams;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
module.exports.deflateBound = deflateBound;
module.exports.deflateCopy = deflateCopy;
module.exports.deflateParams = deflateParams;
module.exports.deflatePending = deflatePending;
module.exports.deflatePrime = deflatePrime;
module.exports.deflateTune = deflateTune;
*/
var deflate_1 = {
@ -4555,12 +4555,17 @@
return deflate$1(input, options);
}
var Deflate_1 = Deflate;
var deflate_2$1 = deflate$1;
var deflateRaw_1 = deflateRaw;
var gzip_1 = gzip;
var constants$1 = constants;
var deflate_1$1 = {
Deflate: Deflate,
deflate: deflate$1,
deflateRaw: deflateRaw,
gzip: gzip,
constants: constants
Deflate: Deflate_1,
deflate: deflate_2$1,
deflateRaw: deflateRaw_1,
gzip: gzip_1,
constants: constants$1
};
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
@ -7501,13 +7506,13 @@
var inflateSetDictionary_1 = inflateSetDictionary;
var inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateUndermine = inflateUndermine;
module.exports.inflateCopy = inflateCopy;
module.exports.inflateGetDictionary = inflateGetDictionary;
module.exports.inflateMark = inflateMark;
module.exports.inflatePrime = inflatePrime;
module.exports.inflateSync = inflateSync;
module.exports.inflateSyncPoint = inflateSyncPoint;
module.exports.inflateUndermine = inflateUndermine;
*/
var inflate_1 = {
@ -7980,12 +7985,17 @@
**/
var Inflate_1 = Inflate;
var inflate_2$1 = inflate$1;
var inflateRaw_1 = inflateRaw;
var ungzip = inflate$1;
var constants$2 = constants;
var inflate_1$1 = {
Inflate: Inflate,
inflate: inflate$1,
inflateRaw: inflateRaw,
ungzip: inflate$1,
constants: constants
Inflate: Inflate_1,
inflate: inflate_2$1,
inflateRaw: inflateRaw_1,
ungzip: ungzip,
constants: constants$2
};
var Deflate$1 = deflate_1$1.Deflate,
@ -7995,19 +8005,39 @@
var Inflate$1 = inflate_1$1.Inflate,
inflate$2 = inflate_1$1.inflate,
inflateRaw$1 = inflate_1$1.inflateRaw,
ungzip = inflate_1$1.ungzip;
ungzip$1 = inflate_1$1.ungzip;
var Deflate_1$1 = Deflate$1;
var deflate_1$2 = deflate$2;
var deflateRaw_1$1 = deflateRaw$1;
var gzip_1$1 = gzip$1;
var Inflate_1$1 = Inflate$1;
var inflate_1$2 = inflate$2;
var inflateRaw_1$1 = inflateRaw$1;
var ungzip_1 = ungzip$1;
var constants_1 = constants;
var pako = {
Deflate: Deflate$1,
deflate: deflate$2,
deflateRaw: deflateRaw$1,
gzip: gzip$1,
Inflate: Inflate$1,
inflate: inflate$2,
inflateRaw: inflateRaw$1,
ungzip: ungzip,
constants: constants
Deflate: Deflate_1$1,
deflate: deflate_1$2,
deflateRaw: deflateRaw_1$1,
gzip: gzip_1$1,
Inflate: Inflate_1$1,
inflate: inflate_1$2,
inflateRaw: inflateRaw_1$1,
ungzip: ungzip_1,
constants: constants_1
};
return pako;
exports.Deflate = Deflate_1$1;
exports.Inflate = Inflate_1$1;
exports.constants = constants_1;
exports.default = pako;
exports.deflate = deflate_1$2;
exports.deflateRaw = deflateRaw_1$1;
exports.gzip = gzip_1$1;
exports.inflate = inflate_1$2;
exports.inflateRaw = inflateRaw_1$1;
exports.ungzip = ungzip_1;
Object.defineProperty(exports, '__esModule', { value: true });
})));

File diff suppressed because one or more lines are too long

85
dist/pako.esm.mjs vendored
View file

@ -1,5 +1,5 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
//
@ -3283,12 +3283,12 @@ var deflateSetDictionary_1 = deflateSetDictionary;
var deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateParams = deflateParams;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
module.exports.deflateBound = deflateBound;
module.exports.deflateCopy = deflateCopy;
module.exports.deflateParams = deflateParams;
module.exports.deflatePending = deflatePending;
module.exports.deflatePrime = deflatePrime;
module.exports.deflateTune = deflateTune;
*/
var deflate_1 = {
@ -3937,12 +3937,18 @@ function gzip(input, options) {
}
var Deflate_1 = Deflate;
var deflate_2$1 = deflate$1;
var deflateRaw_1 = deflateRaw;
var gzip_1 = gzip;
var constants$1 = constants;
var deflate_1$1 = {
Deflate,
deflate: deflate$1,
deflateRaw,
gzip,
constants: constants
Deflate: Deflate_1,
deflate: deflate_2$1,
deflateRaw: deflateRaw_1,
gzip: gzip_1,
constants: constants$1
};
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
@ -6165,13 +6171,13 @@ var inflateSetDictionary_1 = inflateSetDictionary;
var inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateUndermine = inflateUndermine;
module.exports.inflateCopy = inflateCopy;
module.exports.inflateGetDictionary = inflateGetDictionary;
module.exports.inflateMark = inflateMark;
module.exports.inflatePrime = inflatePrime;
module.exports.inflateSync = inflateSync;
module.exports.inflateSyncPoint = inflateSyncPoint;
module.exports.inflateUndermine = inflateUndermine;
*/
var inflate_1 = {
@ -6648,24 +6654,47 @@ function inflateRaw(input, options) {
**/
var Inflate_1 = Inflate;
var inflate_2$1 = inflate$1;
var inflateRaw_1 = inflateRaw;
var ungzip = inflate$1;
var constants$2 = constants;
var inflate_1$1 = {
Inflate,
inflate: inflate$1,
inflateRaw,
ungzip: inflate$1,
constants: constants
Inflate: Inflate_1,
inflate: inflate_2$1,
inflateRaw: inflateRaw_1,
ungzip: ungzip,
constants: constants$2
};
const { Deflate: Deflate$1, deflate: deflate$2, deflateRaw: deflateRaw$1, gzip: gzip$1 } = deflate_1$1;
const { Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip } = inflate_1$1;
const { Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip: ungzip$1 } = inflate_1$1;
var Deflate_1$1 = Deflate$1;
var deflate_1$2 = deflate$2;
var deflateRaw_1$1 = deflateRaw$1;
var gzip_1$1 = gzip$1;
var Inflate_1$1 = Inflate$1;
var inflate_1$2 = inflate$2;
var inflateRaw_1$1 = inflateRaw$1;
var ungzip_1 = ungzip$1;
var constants_1 = constants;
var pako = {
Deflate: Deflate$1, deflate: deflate$2, deflateRaw: deflateRaw$1, gzip: gzip$1,
Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip,
constants
Deflate: Deflate_1$1,
deflate: deflate_1$2,
deflateRaw: deflateRaw_1$1,
gzip: gzip_1$1,
Inflate: Inflate_1$1,
inflate: inflate_1$2,
inflateRaw: inflateRaw_1$1,
ungzip: ungzip_1,
constants: constants_1
};
export default pako;
export { Deflate_1$1 as Deflate, Inflate_1$1 as Inflate, constants_1 as constants, deflate_1$2 as deflate, deflateRaw_1$1 as deflateRaw, gzip_1$1 as gzip, inflate_1$2 as inflate, inflateRaw_1$1 as inflateRaw, ungzip_1 as ungzip };

105
dist/pako.js vendored
View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
@ -3289,12 +3289,12 @@
var deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateParams = deflateParams;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
module.exports.deflateBound = deflateBound;
module.exports.deflateCopy = deflateCopy;
module.exports.deflateParams = deflateParams;
module.exports.deflatePending = deflatePending;
module.exports.deflatePrime = deflatePrime;
module.exports.deflateTune = deflateTune;
*/
var deflate_1 = {
@ -3943,12 +3943,18 @@
}
var Deflate_1 = Deflate;
var deflate_2$1 = deflate$1;
var deflateRaw_1 = deflateRaw;
var gzip_1 = gzip;
var constants$1 = constants;
var deflate_1$1 = {
Deflate,
deflate: deflate$1,
deflateRaw,
gzip,
constants: constants
Deflate: Deflate_1,
deflate: deflate_2$1,
deflateRaw: deflateRaw_1,
gzip: gzip_1,
constants: constants$1
};
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
@ -6171,13 +6177,13 @@
var inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateUndermine = inflateUndermine;
module.exports.inflateCopy = inflateCopy;
module.exports.inflateGetDictionary = inflateGetDictionary;
module.exports.inflateMark = inflateMark;
module.exports.inflatePrime = inflatePrime;
module.exports.inflateSync = inflateSync;
module.exports.inflateSyncPoint = inflateSyncPoint;
module.exports.inflateUndermine = inflateUndermine;
*/
var inflate_1 = {
@ -6654,26 +6660,59 @@
**/
var Inflate_1 = Inflate;
var inflate_2$1 = inflate$1;
var inflateRaw_1 = inflateRaw;
var ungzip = inflate$1;
var constants$2 = constants;
var inflate_1$1 = {
Inflate,
inflate: inflate$1,
inflateRaw,
ungzip: inflate$1,
constants: constants
Inflate: Inflate_1,
inflate: inflate_2$1,
inflateRaw: inflateRaw_1,
ungzip: ungzip,
constants: constants$2
};
const { Deflate: Deflate$1, deflate: deflate$2, deflateRaw: deflateRaw$1, gzip: gzip$1 } = deflate_1$1;
const { Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip } = inflate_1$1;
const { Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip: ungzip$1 } = inflate_1$1;
var Deflate_1$1 = Deflate$1;
var deflate_1$2 = deflate$2;
var deflateRaw_1$1 = deflateRaw$1;
var gzip_1$1 = gzip$1;
var Inflate_1$1 = Inflate$1;
var inflate_1$2 = inflate$2;
var inflateRaw_1$1 = inflateRaw$1;
var ungzip_1 = ungzip$1;
var constants_1 = constants;
var pako = {
Deflate: Deflate$1, deflate: deflate$2, deflateRaw: deflateRaw$1, gzip: gzip$1,
Inflate: Inflate$1, inflate: inflate$2, inflateRaw: inflateRaw$1, ungzip,
constants
Deflate: Deflate_1$1,
deflate: deflate_1$2,
deflateRaw: deflateRaw_1$1,
gzip: gzip_1$1,
Inflate: Inflate_1$1,
inflate: inflate_1$2,
inflateRaw: inflateRaw_1$1,
ungzip: ungzip_1,
constants: constants_1
};
return pako;
exports.Deflate = Deflate_1$1;
exports.Inflate = Inflate_1$1;
exports.constants = constants_1;
exports.default = pako;
exports.deflate = deflate_1$2;
exports.deflateRaw = deflateRaw_1$1;
exports.gzip = gzip_1$1;
exports.inflate = inflate_1$2;
exports.inflateRaw = inflateRaw_1$1;
exports.ungzip = ungzip_1;
Object.defineProperty(exports, '__esModule', { value: true });
})));

4
dist/pako.min.js vendored

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
//
@ -3842,12 +3842,12 @@
var deflateSetDictionary_1 = deflateSetDictionary;
var deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateParams = deflateParams;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
module.exports.deflateBound = deflateBound;
module.exports.deflateCopy = deflateCopy;
module.exports.deflateParams = deflateParams;
module.exports.deflatePending = deflatePending;
module.exports.deflatePrime = deflatePrime;
module.exports.deflateTune = deflateTune;
*/
var deflate_1 = {
@ -4555,14 +4555,26 @@
return deflate$1(input, options);
}
var Deflate_1 = Deflate;
var deflate_2$1 = deflate$1;
var deflateRaw_1 = deflateRaw;
var gzip_1 = gzip;
var constants$1 = constants;
var deflate_1$1 = {
Deflate: Deflate,
deflate: deflate$1,
deflateRaw: deflateRaw,
gzip: gzip,
constants: constants
Deflate: Deflate_1,
deflate: deflate_2$1,
deflateRaw: deflateRaw_1,
gzip: gzip_1,
constants: constants$1
};
return deflate_1$1;
exports.Deflate = Deflate_1;
exports.constants = constants$1;
exports.default = deflate_1$1;
exports.deflate = deflate_2$1;
exports.deflateRaw = deflateRaw_1;
exports.gzip = gzip_1;
Object.defineProperty(exports, '__esModule', { value: true });
})));

File diff suppressed because one or more lines are too long

47
dist/pako_deflate.js vendored
View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// (C) 1995-2013 Jean-loup Gailly and Mark Adler
// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
@ -3289,12 +3289,12 @@
var deflateInfo = 'pako deflate (from Nodeca project)';
/* Not implemented
exports.deflateBound = deflateBound;
exports.deflateCopy = deflateCopy;
exports.deflateParams = deflateParams;
exports.deflatePending = deflatePending;
exports.deflatePrime = deflatePrime;
exports.deflateTune = deflateTune;
module.exports.deflateBound = deflateBound;
module.exports.deflateCopy = deflateCopy;
module.exports.deflateParams = deflateParams;
module.exports.deflatePending = deflatePending;
module.exports.deflatePrime = deflatePrime;
module.exports.deflateTune = deflateTune;
*/
var deflate_1 = {
@ -3943,14 +3943,27 @@
}
var Deflate_1 = Deflate;
var deflate_2$1 = deflate$1;
var deflateRaw_1 = deflateRaw;
var gzip_1 = gzip;
var constants$1 = constants;
var deflate_1$1 = {
Deflate,
deflate: deflate$1,
deflateRaw,
gzip,
constants: constants
Deflate: Deflate_1,
deflate: deflate_2$1,
deflateRaw: deflateRaw_1,
gzip: gzip_1,
constants: constants$1
};
return deflate_1$1;
exports.Deflate = Deflate_1;
exports.constants = constants$1;
exports.default = deflate_1$1;
exports.deflate = deflate_2$1;
exports.deflateRaw = deflateRaw_1;
exports.gzip = gzip_1;
Object.defineProperty(exports, '__esModule', { value: true });
})));

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// It isn't worth it to make additional optimizations as in original.
// Small size is preferable.
@ -3110,13 +3110,13 @@
var inflateSetDictionary_1 = inflateSetDictionary;
var inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateUndermine = inflateUndermine;
module.exports.inflateCopy = inflateCopy;
module.exports.inflateGetDictionary = inflateGetDictionary;
module.exports.inflateMark = inflateMark;
module.exports.inflatePrime = inflatePrime;
module.exports.inflateSync = inflateSync;
module.exports.inflateSyncPoint = inflateSyncPoint;
module.exports.inflateUndermine = inflateUndermine;
*/
var inflate_1 = {
@ -3970,14 +3970,26 @@
**/
var Inflate_1 = Inflate;
var inflate_2$1 = inflate$1;
var inflateRaw_1 = inflateRaw;
var ungzip = inflate$1;
var constants$1 = constants;
var inflate_1$1 = {
Inflate: Inflate,
inflate: inflate$1,
inflateRaw: inflateRaw,
ungzip: inflate$1,
constants: constants
Inflate: Inflate_1,
inflate: inflate_2$1,
inflateRaw: inflateRaw_1,
ungzip: ungzip,
constants: constants$1
};
return inflate_1$1;
exports.Inflate = Inflate_1;
exports.constants = constants$1;
exports.default = inflate_1$1;
exports.inflate = inflate_2$1;
exports.inflateRaw = inflateRaw_1;
exports.ungzip = ungzip;
Object.defineProperty(exports, '__esModule', { value: true });
})));

File diff suppressed because one or more lines are too long

49
dist/pako_inflate.js vendored
View file

@ -1,10 +1,10 @@
/*! pako 2.0.1 https://github.com/nodeca/pako @license (MIT AND Zlib) */
/*! pako 2.0.2 https://github.com/nodeca/pako @license (MIT AND Zlib) */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.pako = factory());
}(this, (function () { 'use strict';
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global.pako = {}));
}(this, (function (exports) { 'use strict';
// Note: adler32 takes 12% for level 0 and 2% for level 6.
// It isn't worth it to make additional optimizations as in original.
@ -2401,13 +2401,13 @@
var inflateInfo = 'pako inflate (from Nodeca project)';
/* Not implemented
exports.inflateCopy = inflateCopy;
exports.inflateGetDictionary = inflateGetDictionary;
exports.inflateMark = inflateMark;
exports.inflatePrime = inflatePrime;
exports.inflateSync = inflateSync;
exports.inflateSyncPoint = inflateSyncPoint;
exports.inflateUndermine = inflateUndermine;
module.exports.inflateCopy = inflateCopy;
module.exports.inflateGetDictionary = inflateGetDictionary;
module.exports.inflateMark = inflateMark;
module.exports.inflatePrime = inflatePrime;
module.exports.inflateSync = inflateSync;
module.exports.inflateSyncPoint = inflateSyncPoint;
module.exports.inflateUndermine = inflateUndermine;
*/
var inflate_1 = {
@ -3183,14 +3183,27 @@
**/
var Inflate_1 = Inflate;
var inflate_2$1 = inflate$1;
var inflateRaw_1 = inflateRaw;
var ungzip = inflate$1;
var constants$1 = constants;
var inflate_1$1 = {
Inflate,
inflate: inflate$1,
inflateRaw,
ungzip: inflate$1,
constants: constants
Inflate: Inflate_1,
inflate: inflate_2$1,
inflateRaw: inflateRaw_1,
ungzip: ungzip,
constants: constants$1
};
return inflate_1$1;
exports.Inflate = Inflate_1;
exports.constants = constants$1;
exports.default = inflate_1$1;
exports.inflate = inflate_2$1;
exports.inflateRaw = inflateRaw_1;
exports.ungzip = ungzip;
Object.defineProperty(exports, '__esModule', { value: true });
})));

File diff suppressed because one or more lines are too long