UNPKG

react-klasha

Version:

This is an reactJS library for implementing klasha payment gateway

12 lines (9 loc) 280 B
import { getElementByReference, isVisible } from '../../commons/dom'; function skipLinkEvaluate(node) { const target = getElementByReference(node, 'href'); if (target) { return isVisible(target, true) || undefined; } return false; } export default skipLinkEvaluate;