office-ui-fabric-react
Version:
Reusable React components for building experiences for Microsoft 365.
13 lines • 405 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Verifies if an application can use DOM.
*/
function canUseDOM() {
return (typeof window !== 'undefined' &&
!!(window.document &&
// eslint-disable-next-line deprecation/deprecation
window.document.createElement));
}
exports.canUseDOM = canUseDOM;
//# sourceMappingURL=canUseDom.js.map
;