Please find below.
Let me know the procedure to show it as the proxy object in consoles
Proxies are easy to tackle,
Just stringify and parse the Object to show it on the console.
Use:
console.log(JSON.parse(JSON.stringify(proxyobj)));
You could simply stringify it as well:
console.log(JSON.stringify(proxyobj));
But I would recommend to parse as well if the Object is huge.