Files
klz-cables.com/.pnpm-store/v10/files/85/d06107d5c1ad4638942d30d7ddbb59608d59f7337bcbc0fb7cb3e86dc083984bcc7ee8f7063ddfae030a3c310cec66cf4e4464999c834c99924e098b5f7d8b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

39 lines
882 B
Plaintext

/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
/** @typedef {import("./ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
/** @typedef {import("./ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
class ArraySerializer {
/**
* @template T
* @param {T[]} array array
* @param {ObjectSerializerContext} context context
*/
serialize(array, context) {
context.write(array.length);
for (const item of array) context.write(item);
}
/**
* @template T
* @param {ObjectDeserializerContext} context context
* @returns {T[]} array
*/
deserialize(context) {
/** @type {number} */
const length = context.read();
/** @type {T[]} */
const array = [];
for (let i = 0; i < length; i++) {
array.push(context.read());
}
return array;
}
}
module.exports = ArraySerializer;