UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Microsoft 365.

10 lines 304 B
/** * Verifies if an application can use DOM. */ export function canUseDOM() { return (typeof window !== 'undefined' && !!(window.document && // eslint-disable-next-line deprecation/deprecation window.document.createElement)); } //# sourceMappingURL=canUseDom.js.map