Rocky_Mountain_Vending/.pnpm-store/v10/files/be/43ef6582167b09b042cbedc61a7a5b4fb18a020bd747f82f546de33e2ba7d1d6d40c1721934cdbd6b55f4bf523f3bb1491aff0a90304afe61c98e397bde38d
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
380 B
Text

export function withPromiseCache(cache, fn, getKey) {
return (...values)=>{
const key = getKey ? getKey(...values) : values[0];
let p = cache.get(key);
if (!p) {
p = fn(...values);
p.catch(()=>cache.remove(key));
cache.set(key, p);
}
return p;
};
}
//# sourceMappingURL=with-promise-cache.js.map