"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); Object.defineProperty(exports, "__esModule", { value: true }); exports.default = deepmerge; exports.isPlainObject = isPlainObject; var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends")); function isPlainObject(item) { return item !== null && typeof item === 'object' && item.constructor === Object; } function deepmerge(target, source, options = { clone: true }) { const output = options.clone ? (0, _extends2.default)({}, target) : target; if (isPlainObject(target) && isPlainObject(source)) { Object.keys(source).forEach(key => { // Avoid prototype pollution if (key === '__proto__') { return; } if (isPlainObject(source[key]) && key in target && isPlainObject(target[key])) { // Since `output` is a clone of `target` and we have narrowed `target` in this block we can cast to the same type. output[key] = deepmerge(target[key], source[key], options); } else { output[key] = source[key]; } }); } return output; }