All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
const CAN_USE_DOM = !!(
|
|
(typeof window !== 'undefined' &&
|
|
window.document && window.document.createElement)
|
|
);
|
|
|
|
export default CAN_USE_DOM;
|