Gitiles
Code Review
Sign In
gerrit.avm99963.com
/
hores-external
/
b3a10e304986674957c4fa1e7c39d8d0d11c810d
/
.
/
node_modules
/
jquery
/
src
/
var
/
isWindow.js
blob: 2ba1168dd383602785afee2c11f8ab39e7cdba59 [
file
] [
log
] [
blame
]
Copybara bot
be50d49
2023-11-30 00:16:42 +0100
[
diff
] [
blame
]
1
define
(
function
()
{
2
"use strict"
;
3
4
return
function
isWindow
(
obj
)
{
5
return
obj
!=
null
&&
obj
===
obj
.
window
;
6
};
7
8
}
);