This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MsgPack { | |
// This library packs and unpacks Squirrel data to and from blobs using | |
// the MessagePack format, see msgpack.org | |
// | |
// The format is more compact than that used by the "Serializer" | |
// library, though it contains less redundancy against corrupted data. | |
// | |
// It can run either in agents or on devices. | |
static VERSION = [1,0,0]; |