Skip to content

Instantly share code, notes, and snippets.

// Usage: boundlessDat.decode(uint8array)
boundlessDat = {
decode : function(uint8Array) {
let decoder = new DatDecoder();
return decoder.decode(uint8Array);
}
};
class DatDecoder {