CasperSecurity

Current Path : /var/www/hrms.uiet.co.in/node_modules/webpack/lib/serialization/
Upload File :
Current File : /var/www/hrms.uiet.co.in/node_modules/webpack/lib/serialization/MapObjectSerializer.js

/*
	MIT License http://www.opensource.org/licenses/mit-license.php
*/

"use strict";

class MapObjectSerializer {
	serialize(obj, { write }) {
		write(obj.size);
		for (const key of obj.keys()) {
			write(key);
		}
		for (const value of obj.values()) {
			write(value);
		}
	}
	deserialize({ read }) {
		let size = read();
		const map = new Map();
		const keys = [];
		for (let i = 0; i < size; i++) {
			keys.push(read());
		}
		for (let i = 0; i < size; i++) {
			map.set(keys[i], read());
		}
		return map;
	}
}

module.exports = MapObjectSerializer;
Hacker Blog, Shell İndir, Sql İnjection, XSS Attacks, LFI Attacks, Social Hacking, Exploit Bot, Proxy Tools, Web Shell, PHP Shell, Alfa Shell İndir, Hacking Training Set, DDoS Script, Denial Of Service, Botnet, RFI Attacks, Encryption
Telegram @BIBIL_0DAY