Rocky_Mountain_Vending/.pnpm-store/v10/files/05/6527f14842810d07e8a7a702bffc9a0a6a597a820ae78452aa2c1794d7746523b03efb8d14632353aaf8283e2829e193da28eaf9d2a905b8a9a3e2b5ba91ae
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

24 lines
No EOL
832 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "computeCacheBustingSearchParam", {
enumerable: true,
get: function() {
return computeCacheBustingSearchParam;
}
});
const _hash = require("../../hash");
function computeCacheBustingSearchParam(prefetchHeader, segmentPrefetchHeader, stateTreeHeader, nextUrlHeader) {
if ((prefetchHeader === undefined || prefetchHeader === '0') && segmentPrefetchHeader === undefined && stateTreeHeader === undefined && nextUrlHeader === undefined) {
return '';
}
return (0, _hash.hexHash)([
prefetchHeader || '0',
segmentPrefetchHeader || '0',
stateTreeHeader || '0',
nextUrlHeader || '0'
].join(','));
}
//# sourceMappingURL=cache-busting-search-param.js.map