mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
7 lines
128 B
TypeScript
7 lines
128 B
TypeScript
import { randomBytes } from "crypto";
|
|
|
|
const randomString = () => randomBytes(32).toString('hex')
|
|
|
|
export default randomString
|
|
|