Search
Search
Search
Search
Information
Information
Light
Dark
Open actions menu
Basic upload method
Bypass upload method
Tips!
If you encounter an error (by firewall) while uploading using both methods,
try changing extension of the file before uploading it and rename it right after.
This uploader supports multiple file upload.
Submit
~
var
www
multi-event-cfp.bitkit.dk
httpdocs
node_modules
webpack
lib
serialization
File Content:
SetObjectSerializer.js
/* MIT License http://www.opensource.org/licenses/mit-license.php */ "use strict"; class SetObjectSerializer { serialize(obj, { write }) { write(obj.size); for (const value of obj) { write(value); } } deserialize({ read }) { let size = read(); const set = new Set(); for (let i = 0; i < size; i++) { set.add(read()); } return set; } } module.exports = SetObjectSerializer;
Edit
Download
Unzip
Chmod
Delete