mirror of
https://github.com/public-transport/db-vendo-client.git
synced 2025-02-23 15:19:35 +02:00
7 lines
152 B
JavaScript
7 lines
152 B
JavaScript
|
#!/usr/bin/env node
|
||
|
|
||
|
const {randomBytes} = require('crypto')
|
||
|
|
||
|
const id = randomBytes(6).toString('hex')
|
||
|
process.stdout.write(JSON.stringify(id) + '\n')
|