compare
import { compare } from "https://raw.githubusercontent.com/marigold-dev/tzstamp/0.3.4/helpers/mod.ts";
Compares two byte arrays.
compare(
new Uint8Array([104, 101, 108, 108, 111]),
new TextEncoder().encode("hello")
);
// true
function compare(a: Uint8Array, b: Uint8Array): boolean;