What is the point of doing window.undefined = window.undefined

Viewed 2154

I was looking at the past versions of jQuery's code, and it seems that in every version they have this line of code somewhere inside:

window.undefined = window.undefined;

I am not able to see why is this important and more importantly, what does this do. This seems like assigning undefined to undefined which makes no sense to me.

However this seems important and I am curious about it.

2 Answers
Related