Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/99523e064c8bd557a11f4e8805bdace3c5d19adb21ae3f69b4f95d32f5261b9a9a08fc5ef59aba21a2a5ad33185378eef37d57e0d1d9f0a688332c8ef7a377
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
216 B
Text

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