芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_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; }