Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/c250ef5f28ea4632524143fe07711c8f91679caeebaf29570a25d2cc3f13b6cbcfb2d7aaf300e2188bba3bf7f5186d31e459530ef2e2df5e8b91fe4702e17a
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

41 lines
No EOL
1.3 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "deepMerge", {
enumerable: true,
get: function() {
return deepMerge;
}
});
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;
}
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
Object.defineProperty(exports.default, '__esModule', { value: true });
Object.assign(exports.default, exports);
module.exports = exports.default;
}
//# sourceMappingURL=deepmerge.js.map