UNPKG

semantic-ui-react

Version:
21 lines (18 loc) 573 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; /** * Normalizes `target` for EventStack, because `target` can be passed as `boolean` or `string`. * * @param {boolean|string|HTMLElement|Window} target Value for normalization. * @return {HTMLElement|Window} A DOM node. */ var normalizeTarget = function normalizeTarget(target) { if (target === 'document') return document; if (target === 'window') return window; return target || document; }; var _default = normalizeTarget; exports.default = _default;