Rocky_Mountain_Vending/.pnpm-store/v10/files/c4/8b8653c4144bbb7abdaf370577a8eb1609cba0494e90380870d32be6a24824e7779f6b9918ab6f18d654f93ce79b784251cbb8a64c11fb16f713ef6041fb86
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
349 B
Text

const getTransformedHeaders = (headers) => {
const transformedHeaders = {};
for (const name of Object.keys(headers)) {
const headerValues = headers[name];
transformedHeaders[name] = Array.isArray(headerValues) ? headerValues.join(",") : headerValues;
}
return transformedHeaders;
};
export { getTransformedHeaders };