Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/20e77caaff176eb98ae33d95dd68fa629a0383aa101ebe3e117b4ce32da86869af1551dab31aaed2c3981a8829610df5e10bbe743b9e76e16570bf375c2d0d
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

11 lines
No EOL
318 B
Text

import ownerWindow from './ownerWindow';
/**
* Returns one or all computed style properties of an element.
*
* @param node the element
* @param psuedoElement the style property
*/
export default function getComputedStyle(node, psuedoElement) {
return ownerWindow(node).getComputedStyle(node, psuedoElement);
}