Update checked-in dependencies
This commit is contained in:
parent
ca3043e8ef
commit
9ee83fa7ef
183 changed files with 2391 additions and 1212 deletions
2
node_modules/adm-zip/methods/inflater.js
generated
vendored
2
node_modules/adm-zip/methods/inflater.js
generated
vendored
|
|
@ -2,7 +2,7 @@ const version = +(process.versions ? process.versions.node : "").split(".")[0] |
|
|||
|
||||
module.exports = function (/*Buffer*/ inbuf, /*number*/ expectedLength) {
|
||||
var zlib = require("zlib");
|
||||
const option = version >= 15 ? { maxOutputLength: expectedLength } : {};
|
||||
const option = version >= 15 && expectedLength > 0 ? { maxOutputLength: expectedLength } : {};
|
||||
|
||||
return {
|
||||
inflate: function () {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue