Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/cc1cdf030090a7fd225c1c99912f8566c2d27f8e525bf627b465f38bc1339c226da5e10331d408bd1bdbe8b0b29b0890c9a5d795760dd56afbe4b45a02a824
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

14 lines
No EOL
580 B
Text

import { hexHash } from '../../hash';
export function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {
if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) {
return '';
}
return hexHash([
prefetchHeader || '0',
segmentPrefetchHeader || '0',
stateTreeHeader || '0',
nextUrlHeader || '0'
].join(','));
}
//# sourceMappingURL=cache-busting-search-param.js.map