Rocky_Mountain_Vending/.pnpm-store/v10/files/32/8fd17595902702d51aaa7634346ddd05508b7cd19d11b35fa58803a629aebb3ea087da621de9de8ff98b3f622abc390c0a0a023b120ddcb477fd89491571d9
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
263 B
Text

export default function some(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 true;
}
}
return false;
}