Server IP : 162.213.251.212 / Your IP : 3.14.131.169 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/root/home/allssztx/needapair.com/node_modules/pizzip/es6/ |
Upload File : |
"use strict"; const base64 = require("./base64.js"); const utf8 = require("./utf8.js"); const utils = require("./utils.js"); const ZipEntries = require("./zipEntries.js"); module.exports = function (data, options) { let i, input; options = utils.extend(options || {}, { base64: false, checkCRC32: false, optimizedBinaryString: false, createFolders: false, decodeFileName: utf8.utf8decode, }); if (options.base64) { data = base64.decode(data); } const zipEntries = new ZipEntries(data, options); const files = zipEntries.files; for (i = 0; i < files.length; i++) { input = files[i]; this.file(input.fileNameStr, input.decompressed, { binary: true, optimizedBinaryString: true, date: input.date, dir: input.dir, comment: input.fileCommentStr.length ? input.fileCommentStr : null, unixPermissions: input.unixPermissions, dosPermissions: input.dosPermissions, createFolders: options.createFolders, }); } if (zipEntries.zipComment.length) { this.comment = zipEntries.zipComment; } return this; };