Rocky_Mountain_Vending/.pnpm-store/v10/files/73/5e3358ba2fc65a1b335bb6f09a491588cd6f2e55388dbf670284c3f57389a668e8a0d08ebed5b8d66ad215a6d7d71209328254b5dfd9fab7144a200045a0c5
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

8 lines
No EOL
241 B
Text

/**
* Checks if a given element is currently visible.
*
* @param node the element to check
*/
export default function isVisible(node) {
return node ? !!(node.offsetWidth || node.offsetHeight || node.getClientRects().length) : false;
}