michangarrito/apps/backend/node_modules/@nestjs/swagger/dist/utils/assign-two-levels-deep.js
rckrdmrd 48dea7a5d0 feat: Initial commit - michangarrito
Marketplace móvil para negocios locales mexicanos.

Estructura inicial:
- apps/backend (NestJS API)
- apps/frontend (React Web)
- apps/mobile (Expo/React Native)
- apps/mcp-server (Claude MCP Server)
- apps/whatsapp-service (WhatsApp Business API)
- database/ (PostgreSQL DDL)
- docs/ (Documentación)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-07 04:41:02 -06:00

14 lines
474 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.assignTwoLevelsDeep = void 0;
function assignTwoLevelsDeep(_dest, ...args) {
const dest = _dest;
for (const arg of args) {
for (const [key, value] of Object.entries(arg !== null && arg !== void 0 ? arg : {})) {
dest[key] = Object.assign(Object.assign({}, dest[key]), value);
}
}
return dest;
}
exports.assignTwoLevelsDeep = assignTwoLevelsDeep;