想象一个简单的递归函数,我们试图包装它以检测输入和输出。
// A simple recursive function.
const count = n => n && 1 + count(n-1);
// Wrap a function in a proxy to instrument input and output.
function instrument(fn) {
return new Proxy(fn, {
apply(target, thisArg, argumentsList) {
console.log("inputs", ...argumentsList);
const result = target(...argumentsList);
console.log("output", result);
return result;
}
});
}
// Call the instrumented function.
instrument(count)(2);
但是,这仅记录最顶层的输入和输出。我想找到一种count
在递归时调用检测版本的方法。