function repeatimport { repeat } from "https://deno.land/x/deno@v0.22.0/std/bytes/mod.ts"; repeat(b: Uint8Array, count: number): Uint8ArrayRepeat bytes. returns a new byte slice consisting of count copies of b. Parametersb: Uint8ArrayThe origin bytes count: numberThe count you want to repeat. ReturnsUint8Array