%PDF- %PDF-
Direktori : /var/www/html/node_modules/@popperjs/core/lib/dom-utils/ |
Current File : /var/www/html/node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js.flow |
// @flow import { isElement } from './instanceOf'; import type { Window } from '../types'; export default function getDocumentElement( element: Element | Window ): HTMLElement { // $FlowFixMe[incompatible-return]: assume body is always available return ( (isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing] element.document) || window.document ).documentElement; }