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
/
sequence-request-id-generator.js
8 lines
(6 loc)
•
139 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
function
sequenceRequestIdGenerator
(
) {
let
requestId =
0
return
function
sequenceRequestHandler
(
) {
return
requestId++ } }