UNPKG

homebridge-config-ui-x

Version:

A web based management, configuration and control platform for Homebridge

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) } }