Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/2601e7d2cf4ae3d557cb8ca350053899a2108e836bff97452eb02f496615fc9a073ac70959fa5e0425879645b320c3aaaaa7b449fcc3c122412ad053226d9f
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

9 lines
267 B
Text

export const hasHeader = (header, headers) => {
const soughtHeader = header.toLowerCase();
for (const headerName of Object.keys(headers)) {
if (soughtHeader === headerName.toLowerCase()) {
return true;
}
}
return false;
};