semantic-ui-react
Version:
The official Semantic-UI-React integration.
13 lines (12 loc) • 438 B
JavaScript
/**
* 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;
};
export default normalizeTarget;