UNPKG

fastify

Version:

Fast and low overhead web framework, for Node.js

10 lines (8 loc) 182 B
'use strict' module.exports = function () { var maxInt = 2147483647 var nextReqId = 0 return function genReqId (req) { return (nextReqId = (nextReqId + 1) & maxInt) } }