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

15 lines
252 B
Text

import ListCache from './_ListCache.js';
/**
* Removes all key-value entries from the stack.
*
* @private
* @name clear
* @memberOf Stack
*/
function stackClear() {
this.__data__ = new ListCache;
this.size = 0;
}
export default stackClear;