UNPKG

182 BJavaScriptView Raw
1'use strict'
2
3module.exports = function () {
4 var maxInt = 2147483647
5 var nextReqId = 0
6 return function genReqId (req) {
7 return (nextReqId = (nextReqId + 1) & maxInt)
8 }
9}