Say I have a proxy instance like so:
const getProxy = function(){
return new Proxy({}, ...);
}
const proxy = getProxy();
later on, I want to retrieve the target from the proxy, is there some way to do this? something like:
const target = proxy.getOriginalTarget()