import { decode } from "https://deno.land/std@0.199.0/msgpack/mod.ts";
Decode a value from the MessagePack binary format.
Examples
Example 1
Example 1
import { decode } from "https://deno.land/std@0.199.0/msgpack/decode.ts";
const encoded = Uint8Array.of(1, 2, 3)
console.log(decode(encoded))