Uname: 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
Software: LiteSpeed
PHP version: 8.1.31 [ PHP INFO ] PHP os: Linux
Server Ip: 162.213.251.212
Your Ip: 18.191.126.111
User: allssztx (535) | Group: allssztx (533)
Safe Mode: OFF
Disable Function:
NONE

name : load.js
"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;
};
© 2025 GrazzMean-Shell