Rocky_Mountain_Vending/.pnpm-store/v10/files/8f/bf26eddf2e461c941167f793c9094aa78334c478e4effe7efe6dad905ba742bdab2d305ef12328c003f405ebcc043a1a9a3fb97bb4b246fe635f7b9696a16a
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

13 lines
335 B
Text

/**
* Checks if a `cache` value for `key` exists.
*
* @private
* @param {Object} cache The cache to query.
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function cacheHas(cache, key) {
return cache.has(key);
}
export default cacheHas;