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
Our JS execute keywords on Node side call eval to create function objects.
We should switch this to calling const func = new Function("return "+funcString)() that is much safer and does not pollute our namespace.
Current eval method could for instance accidentally re-write our node end functions etc.
The text was updated successfully, but these errors were encountered:
Our JS execute keywords on Node side call eval to create function objects.
We should switch this to calling
const func = new Function("return "+funcString)()
that is much safer and does not pollute our namespace.Current eval method could for instance accidentally re-write our node end functions etc.
The text was updated successfully, but these errors were encountered: