guardia-messenger/node_modules/fast-loops/lib/objectMergeDeep.js
DESKTOP-TKLFCPRython f29f525c77 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

34 lines
1.2 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = objectMergeDeep;
function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
function objectMergeDeep() {
var base = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
for (var i = 0, len = arguments.length <= 1 ? 0 : arguments.length - 1; i < len; ++i) {
var obj = i + 1 < 1 || arguments.length <= i + 1 ? undefined : arguments[i + 1];
for (var key in obj) {
// see https://github.com/robinweser/fast-loops/issues/18
if (key === '__proto__' || key === 'constructor' || key === 'prototype') {
continue;
}
var value = obj[key];
if (_typeof(value) === 'object' && !Array.isArray(value) && value !== null) {
base[key] = objectMergeDeep(base[key], value);
continue;
}
base[key] = value;
}
}
return base;
}