Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/ae3b468fa25822b9ef760bd58ba68b60aae9c44812455bcecae792c481137a9a7123081f65e596ab0b64fd942b449f955d8672334a9b5ae8024114882099b8
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

13 lines
218 B
Text

/**
* Removes all key-value entries from the list cache.
*
* @private
* @name clear
* @memberOf ListCache
*/
function listCacheClear() {
this.__data__ = [];
this.size = 0;
}
module.exports = listCacheClear;