UNPKG

@gechiui/dom

Version:
17 lines (16 loc) 499 B
/** * Internal dependencies */ import isEdge from './is-edge'; /** * Check whether the selection is horizontally at the edge of the container. * * @param {Element} container Focusable element. * @param {boolean} isReverse Set to true to check left, false for right. * * @return {boolean} True if at the horizontal edge, false if not. */ export default function isHorizontalEdge(container, isReverse) { return isEdge(container, isReverse); } //# sourceMappingURL=is-horizontal-edge.js.map