Rocky_Mountain_Vending/.pnpm-store/v10/files/17/c91137fd67b7941d89104f9650a2dccca175fc0bdc02c0c83d1d6766291122ed4fb7c52b34703260a6c54ee931e03d82e71fe0b0a2af5bf527a384c2d5ff62
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

16 lines
380 B
Text

import getMapData from './_getMapData.js';
/**
* Checks if a map value for `key` exists.
*
* @private
* @name has
* @memberOf MapCache
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function mapCacheHas(key) {
return getMapData(this, key).has(key);
}
export default mapCacheHas;