Rocky_Mountain_Vending/.pnpm-store/v10/files/b4/e7c53ef50c130156c0d99c80a82e04d044ce88dfe1051b4fb16633e351dec13312c4de7fff8d5133ab2a14f950d9108d3ca1e18cbc5f3bc8ebd5b024b60129
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

18 lines
427 B
Text

"use strict";
function _object_without_properties_loose(source, excluded) {
if (source == null) return {};
var target = {};
var sourceKeys = Object.keys(source);
var key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];
if (excluded.indexOf(key) >= 0) continue;
target[key] = source[key];
}
return target;
}
exports._ = _object_without_properties_loose;