Skip to content

Instantly share code, notes, and snippets.

@z3db0y
z3db0y / SimpleSerializer.js
Last active August 27, 2022 09:36
Serializer made for Moai 🗿 SDK
class Serializer {
static DATA_TYPES = {
NULL: 0x0,
TRUE: 0x1,
FALSE: 0x2,
STRING: 0x3,
NUMBER: 0x4,
ARRAY: 0x5,
OBJECT: 0x6
}