blob: 024d53b99d8fc45deb6c0670fca4b40e3b159301 [file] [log] [blame]
function foo(o) {
for (let p in o) {
o.hasOwnProperty(p);
o.__proto__ = undefined;
}
}
for (let i = 0; i < 100000; ++i) {
foo({f:42});
}