blob: 2ba1168dd383602785afee2c11f8ab39e7cdba59 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001define( function() {
2 "use strict";
3
4 return function isWindow( obj ) {
5 return obj != null && obj === obj.window;
6 };
7
8} );