Rocky_Mountain_Vending/.pnpm-store/v10/files/47/c80204e89fd9a85ca0f3572923c51a8179fc7985de19636bc25054ccffde589914326e6aeeb161e86d3571e940ed89bc081eaba27c34e0e040eb4ca4c56385
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
279 B
Text

import nativeCreate from './_nativeCreate.js';
/**
* Removes all key-value entries from the hash.
*
* @private
* @name clear
* @memberOf Hash
*/
function hashClear() {
this.__data__ = nativeCreate ? nativeCreate(null) : {};
this.size = 0;
}
export default hashClear;