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.

29 lines (24 loc) 711 B
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; /** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */ /** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */ class RegExpObjectSerializer { /** * @param {RegExp} obj regexp * @param {ObjectSerializerContext} context context */ serialize(obj, context) { context.write(obj.source); context.write(obj.flags); } /** * @param {ObjectDeserializerContext} context context * @returns {RegExp} regexp */ deserialize(context) { return new RegExp(context.read(), context.read()); } } module.exports = RegExpObjectSerializer;