* fix: do not remove for-loop declarators * fix: do not remove uninitialized var declarators in for init
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
(function () {
|
|
let i = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "__proto__";
|
|
return function () {
|
|
for (var i in {});
|
|
}();
|
|
});
|