/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
lib/serialization/RegExpObjectSerializer.js
31 строка
882 B
Alexander Akait
Type serializer read/write contexts with positional tuples (#21201)
18 июн 2026, 00:07
Не верифицирован
18 июн 2026, 00:07
907d23f
Код
Авторство
О чём код?
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; /** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext<[string, string]>} ObjectDeserializerContext */ /** @typedef {import("./ObjectMiddleware").ObjectSerializerContext<[string, string]>} ObjectSerializerContext */ class RegExpObjectSerializer { /** * Serializes this instance into the provided serializer context. * @param {RegExp} obj regexp * @param {ObjectSerializerContext} context context */ serialize(obj, context) { context.write(obj.source); context.write(obj.flags); } /** * Restores this instance from the provided deserializer context. * @param {ObjectDeserializerContext} context context * @returns {RegExp} regexp */ deserialize(context) { return new RegExp(context.read(), context.read()); } } module.exports = RegExpObjectSerializer;