File size: 97 Bytes
cd6720a
 
 
 
 
1
2
3
4
5
6
import { randomBytes } from 'crypto';

export function random(len) {
	return randomBytes(len);
}