Rocky_Mountain_Vending/.pnpm-store/v10/files/0b/5020656d6aab03a25c681e212260bd71769f449ebe42459b1c4363d2e912cc94e6f39354f1597ff503fc34c2e2314443db9074035733b3b8ff91bb9fe6a17f
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

9 lines
No EOL
178 B
Text

export function pick(obj, keys) {
const newObj = {};
for (const key of keys){
newObj[key] = obj[key];
}
return newObj;
}
//# sourceMappingURL=pick.js.map