UNPKG

melt

Version:

The next generation of Melt UI. Built for Svelte 5.

7 lines (6 loc) 196 B
import { pointInPolygon } from "./polygon"; export function isPointerInGraceArea(e, area) { if (!area) return false; return pointInPolygon({ x: e.clientX, y: e.clientY }, area); }