Update checked-in dependencies

This commit is contained in:
github-actions[bot] 2024-09-02 17:34:39 +00:00
parent 52df12d45d
commit 294a6ed044
315 changed files with 1937 additions and 1303 deletions

View file

@ -183,7 +183,7 @@ module.exports = function () {
// get Unix file permissions
get fileAttr() {
return uint16(_attr >> 16) & 0xfff;
return (_attr || 0) >> 16 & 0xfff;
},
get offset() {

2
node_modules/adm-zip/package.json generated vendored
View file

@ -1,6 +1,6 @@
{
"name": "adm-zip",
"version": "0.5.15",
"version": "0.5.16",
"description": "Javascript implementation of zip for nodejs with support for electron original-fs. Allows user to create or extract zip files both in memory or to/from disk",
"scripts": {
"test": "mocha -R spec",

2
node_modules/adm-zip/zipFile.js generated vendored
View file

@ -294,7 +294,7 @@ module.exports = function (/*Buffer|null*/ inBuffer, /** object */ options) {
mainHeader.size = 0;
mainHeader.offset = 0;
totalEntries = 0;
let totalEntries = 0;
for (const entry of this.entries) {
// compress data and set local and entry header accordingly. Reason why is called first