Rocky_Mountain_Vending/.pnpm-store/v10/files/c3/c076daa90045e4e01d492166183c16510a7e5d5d057b254c3d38d9d096fae7c6650faedd2bf0109f1e3f9451d3d27bc019e6ecf4492a9b7f47ab095a66c489
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
271 B
Text

/**
* Gets the stack value for `key`.
*
* @private
* @name get
* @memberOf Stack
* @param {string} key The key of the value to get.
* @returns {*} Returns the entry value.
*/
function stackGet(key) {
return this.__data__.get(key);
}
module.exports = stackGet;