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
Interesting. Closer inspection of node's context objects reveals that upon running something in a context the context object receives its own (non-enumerable) copy of every global, which is not identical with the current global.
I think the problem is that vm-browserify only copies properties which were already on the context before the eval or were introduced by the eval'd code.
In node vm:
And that's not the case in this module because it disposes of iframe (real context) after each run.
The text was updated successfully, but these errors were encountered: