function encodeU32import { encodeU32 } from "https://deno.land/std@0.145.0/encoding/varint.ts"; encodeU32(val: number): Uint8ArrayEncodes the given number into Uint8Array with LEB128. The number needs to be in the range of 0 and 0xffffffff. Encodes the given number into Uint8Array with LEB128. The number needs to be in the range of 0 and 0xffffffff. import { encodeU32 } from "./varint.ts"; const encodedValue = encodeU32(42); // Do something with the encoded value Parametersval: numberReturnsUint8Array