I've recently started using proxies in one of my projects. The one downside of this has been that when inspecting the object in a debugger, it's now wrapped by the proxy javascript proxy.
Intead of seeing [[Handler]],[[Target]],[[isRevoked]]
I would prefer to just see the object referenced by [[Target]]
.
It's a minor inconvenience but I think that it could be solved with a Chrome Devtools custom formatter.
Seems like this would be fairly common, but I can't find any existing formatters. Just wanted to double check that there wasn't already one out there before I go down the road of writing my own.