ethers.js/packages/random/src.ts/random.ts

8 lines
208 B
TypeScript
Raw Normal View History

2020-11-15 01:42:36 +03:00
import { randomBytes as _randomBytes } from "crypto";
import { arrayify } from "@ethersproject/bytes";
export function randomBytes(length: number): Uint8Array {
return arrayify(_randomBytes(length));
}