UNPKG

ice.fo.utils

Version:

9 lines (7 loc) 282 B
import { COMPONENT_MENU_ANCHOR_PREFIX } from './constants' /** * Return HTML Element of target anchor id. */ export default function findTargetAnchorElement(text) { return document.getElementById(text) || document.querySelector(`*[${COMPONENT_MENU_ANCHOR_PREFIX}=${text}]`); }