This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
|
import {randomBytes} from "../src/helpers";
|
|
|
|
export function randomMessage(): Uint8Array {
|
|
return randomBytes(32);
|
|
}
|
|
|
|
export function getN<T>(n: number, getter: () => T): T[] {
|
|
return Array.from({length: n}, () => getter());
|
|
}
|