UNPKG
twitchtvapp-nicer00ster
Version:
latest (1.0.0)
1.0.0
twitchtv show active users
twitchtvapp-nicer00ster
/
bower_components
/
popper.js
/
packages
/
popper
/
src
/
utils
/
getWindow.js
10 lines
(9 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Get the window associated with the element *
@argument
{
Element
}
element
*
@returns
{
Window
} */
export
default
function
getWindow
(
element
) {
const
ownerDocument = element.
ownerDocument
;
return
ownerDocument ? ownerDocument.
defaultView
:
window
; }