UNPKG

@yandex/ui

Version:

Yandex UI components

18 lines (17 loc) 534 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.canUseDOM = void 0; /** * Проверяет, можно использовать браузерное API в текущем окружении. * * @example * if (canUseDOM()) { * document.querySelector('...') * } */ var canUseDOM = function () { return (typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined'); }; exports.canUseDOM = canUseDOM;