UNPKG

pinpoint-node-agent

Version:

Pinpoint APM agent for Node.js — distributed tracing, error analysis, and URI statistics

25 lines (19 loc) 361 B
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ 'use strict' class DateNow { static offset = 0 static now() { return Date.now() + DateNow.offset } static setOffset(ms) { DateNow.offset = ms } static reset() { DateNow.offset = 0 } } module.exports = DateNow