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
Math.random() not considered as pure yet. This will be solved in the future.
Prototype pollution. IMO, the expected behavior should be:
functioneffect1(key,value){({})[key]?.x=value}({}).__proto__.x// Preservedeffect("__proto__")// Preservedeffect(""+unknown)// Although `unknown` is possible to be "__proto__", still remove it
Input:
Expected Output:
Include all statements.
Actual Output:
It seems that objects created by literals do not have a prototype chain, and references to global objects are automatically retained.
The text was updated successfully, but these errors were encountered: