UNPKG

@melt-ui/svelte

Version:
7 lines (6 loc) 197 B
import { pointInPolygon } from './index.js'; export function isPointerInGraceArea(e, area) { if (!area) return false; return pointInPolygon({ x: e.clientX, y: e.clientY }, area); }