I want to extract a target object from Proxy. Is it possible?
let foo = new Proxy(bar, {...})
let extractedBar = ? // should be plain object, not Proxy
I know, I can make my own solution for this. But I wonder is there any standard implementation, so I won't have to edit Proxy's code.