Rocky_Mountain_Vending/.pnpm-store/v10/files/29/f8aa636cc94860feaa9f41b27f3003c18c6678460f5cf7a8cc4aefd3013e1a908cd02eba4f1a88a71c5a786526b15fdec7f86f95a3acfbc34518a25111c5c8
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
321 B
Text

/**
* Checks if a stack value for `key` exists.
*
* @private
* @name has
* @memberOf Stack
* @param {string} key The key of the entry to check.
* @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
*/
function stackHas(key) {
return this.__data__.has(key);
}
export default stackHas;