UNPKG

pinpoint-node-agent

Version:

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

29 lines (23 loc) 502 B
/** * Pinpoint Node.js Agent * Copyright 2020-present NAVER Corp. * Apache License v2.0 */ 'use strict' class HookFunctionArguments { constructor(target, methodName, original) { this.target = target this.methodName = methodName this.original = original } getTarget() { return this.target } getMethodName() { return this.methodName } getOriginal() { return this.original } } module.exports = HookFunctionArguments