"use strict"; import { randomBytes as _randomBytes } from "crypto"; import { arrayify } from "@ethersproject/bytes"; export { shuffled } from "./shuffle"; export function randomBytes(length) { return arrayify(_randomBytes(length)); }