UNPKG
@ert78gb/fastify-google-cloud-run-options
Version:
latest (3.0.2)
3.0.2
3.0.1
3.0.0
2.0.1
2.0.0
1.1.1
1.1.0
1.0.0
Fastify Google Cloud Run configuration
github.com/ert78gb/fastify-google-cloud-run-options
@ert78gb/fastify-google-cloud-run-options
/
lib
/
request-id
/
uuid-request-id-generator.js
8 lines
(6 loc)
•
152 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
{randomUUID}
from
'node:crypto'
export
function
uuidRequestIdGenerator
(
) {
return
function
uuidRequestHandler
(
) {
return
randomUUID
() } }