Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101800332
MapObjectSerializer.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Feb 13, 20:18
Size
554 B
Mime Type
text/x-c++
Expires
Sat, Feb 15, 20:18 (2 d)
Engine
blob
Format
Raw Data
Handle
24231823
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
MapObjectSerializer.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
class MapObjectSerializer {
serialize(obj, { write }) {
write(obj.size);
for (const key of obj.keys()) {
write(key);
}
for (const value of obj.values()) {
write(value);
}
}
deserialize({ read }) {
let size = read();
const map = new Map();
const keys = [];
for (let i = 0; i < size; i++) {
keys.push(read());
}
for (let i = 0; i < size; i++) {
map.set(keys[i], read());
}
return map;
}
}
module.exports = MapObjectSerializer;
Event Timeline
Log In to Comment