pinpoint-node-agent
Version:
Pinpoint APM agent for Node.js — distributed tracing, error analysis, and URI statistics
25 lines (19 loc) • 361 B
JavaScript
/**
* Pinpoint Node.js Agent
* Copyright 2020-present NAVER Corp.
* Apache License v2.0
*/
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