pinpoint-node-agent
Version:
Pinpoint node agent provided by NAVER
29 lines (23 loc) • 502 B
JavaScript
/**
* Pinpoint Node.js Agent
* Copyright 2020-present NAVER Corp.
* Apache License v2.0
*/
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