Rocky_Mountain_Vending/.pnpm-store/v10/files/88/2a6a0cdc9dc8023dc7ec0a062617a0e120dd1a2d620ac8ca012bbadb1d17284321160afe2f4494402c8b4123234522d5ab18a9e4fed542fe80c1a5ea8eeb67
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

17 lines
369 B
Text

module.exports = extend
var hasOwnProperty = Object.prototype.hasOwnProperty;
function extend(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i]
for (var key in source) {
if (hasOwnProperty.call(source, key)) {
target[key] = source[key]
}
}
}
return target
}