ft_transcendence/pong/node_modules/@lukeed/csprng/node/index.mjs
2023-05-02 19:15:50 +02:00

6 lines
97 B
JavaScript

import { randomBytes } from 'crypto';
export function random(len) {
return randomBytes(len);
}