Closed
Description
Currently target
and handler
as internal fields of JavascriptProxy.cpp
and there is no way to retrieve them natively. Recently node started taking dependency on these fields natively. This breaks node on chakracore as chakracore doesn't have these fields exposed via JSRT. Additionally as per ES6 spec, there is no way to check if an object is a proxy or not.
This issue is to track adding below JSRT APIs
GetTargetOfProxy
GetHandlerOfProxy
IsProxy