Rocky_Mountain_Vending/.pnpm-store/v10/files/4e/82cbbfc1b3a71cd0e92eab1112ba7a3d799365b80394ca723b5c61dcfc5b8703ce2f115dba57d4f5dc84a2844ab5b6f454b719b63c591572ca04795609a302
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
328 B
Text

import getMapData from './_getMapData.js';
/**
* Gets the map value for `key`.
*
* @private
* @name get
* @memberOf MapCache
* @param {string} key The key of the value to get.
* @returns {*} Returns the entry value.
*/
function mapCacheGet(key) {
return getMapData(this, key).get(key);
}
export default mapCacheGet;