Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/138d1a9ecfabc8bc1a33e4520e33d0248420e25818d0abfc451fcfd2eb91f9fa3832b2e9779acd4c3fde59563c3daa73fb8ee9bad1c6da276b394e4ff89e95
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

10 lines
265 B
Text

export default function every(values, test) {
if (typeof test !== "function") throw new TypeError("test is not a function");
let index = -1;
for (const value of values) {
if (!test(value, ++index, values)) {
return false;
}
}
return true;
}