UNPKG

@uyu423/pinpoint-node-agent

Version:

Pinpoint node agent provided by NAVER (Personalized version)

20 lines (15 loc) 307 B
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ 'use strict' class IdGenerator { constructor () { this.MAX_NUM = Number.MAX_SAFE_INTEGER } get next () { return Math.floor(Math.random() * this.MAX_NUM) } } module.exports = new IdGenerator()