Rocky_Mountain_Vending/.pnpm-store/v10/files/26/6f2b8083426588b737ad85bc66d42b4a89d2318dd166c6358bd4c3cee54e28ca4612acd556422c50709ed0d00c682408655dcc4e17814da8f24c0627d26a71
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

25 lines
No EOL
847 B
Text

export function deepMerge(target, source) {
if (!source || typeof source !== 'object' || Array.isArray(source)) {
return source;
}
if (!target || typeof target !== 'object' || Array.isArray(target)) {
return source;
}
const result = {
...target
};
for(const key in source){
const sourceValue = source[key];
const targetValue = target[key];
if (sourceValue !== undefined) {
if (sourceValue && typeof sourceValue === 'object' && !Array.isArray(sourceValue) && targetValue && typeof targetValue === 'object' && !Array.isArray(targetValue)) {
result[key] = deepMerge(targetValue, sourceValue);
} else {
result[key] = sourceValue;
}
}
}
return result;
}
//# sourceMappingURL=deepmerge.js.map