You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can do something similar by implementing Scriptable.
Note that when implementing Scriptable.get in JavaScript as suggested, that is the get impl. returns (JavaScript) undefined, the 'proxy' returns null for the gotten property. If you need it to return undefined, the get method should return org.mozilla.javascript.Undefined.SCRIPTABLE_UNDEFINED instead
like :
const p = new Proxy(target, handler)
The text was updated successfully, but these errors were encountered: