Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 441 Bytes

Package.md

File metadata and controls

16 lines (11 loc) · 441 Bytes

msgpack implementation in ballerina

Package Overview

see msgpack.org

this package exposes two functions, encode and decode, which handle serialization to and from msgpack-encoded byte arrays.

public function encode(any data) returns byte[];
public function decode(byte[] data) returns any;

this package is NOT feature complete. feel free to contribute! see the readme and repository for completion.