This commit is contained in:
2022-04-07 18:09:31 +05:30
parent 36ea86d8e6
commit 1c779ef816
14095 changed files with 1769361 additions and 47 deletions
+22
View File
@@ -0,0 +1,22 @@
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
class ArraySerializer {
serialize(array, { write }) {
write(array.length);
for (const item of array) write(item);
}
deserialize({ read }) {
const length = read();
const array = [];
for (let i = 0; i < length; i++) {
array.push(read());
}
return array;
}
}
module.exports = ArraySerializer;