UNPKG

webpack

Version:

Packs ECMAScript/CommonJs/AMD modules for the browser. Allows you to split your codebase into multiple bundles, which can be loaded on demand. Supports loaders to preprocess files, i.e. json, jsx, es7, css, less, ... and your custom stuff.

43 lines (37 loc) 1.03 kB
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; /** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */ /** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */ class SetObjectSerializer { /** * Serializes this instance into the provided serializer context. * @template T * @param {Set<T>} obj set * @param {ObjectSerializerContext} context context */ serialize(obj, context) { context.write(obj.size); for (const value of obj) { context.write(value); } } /** * Restores this instance from the provided deserializer context. * @template T * @param {ObjectDeserializerContext} context context * @returns {Set<T>} date */ deserialize(context) { /** @type {number} */ const size = context.read(); /** @type {Set<T>} */ const set = new Set(); for (let i = 0; i < size; i++) { set.add(context.read()); } return set; } } module.exports = SetObjectSerializer;