mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-22 18:03:30 +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
|
|
|