-
-
Save bakoushin/b0a288592de02bfda5c30e95bb422ef4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const hasOwnProperty = Object.prototype.hasOwnProperty; | |
const toString = Object.prototype.toString; | |
/** | |
* Проверяет, что переданный объект является "плоским" (т.е. созданным с помощью "{}" | |
* или "new Object"). | |
* | |
* @param {Object} obj | |
* @returns {Boolean} | |
*/ | |
function isPlainObject(obj) { | |
if (toString.call(obj) !== '[object Object]') { | |
return false; | |
} | |
const prototype = Object.getPrototypeOf(obj); | |
return prototype === null || | |
prototype === Object.prototype; | |
} | |
/** | |
* Копирует перечислимые свойства одного или нескольких объектов в целевой объект. | |
* | |
* @param {Boolean} [deep=false] При значении `true` свойства копируются рекурсивно. | |
* @param {Object} target Объект для расширения. Он получит новые свойства. | |
* @param {...Object} objects Объекты со свойствами для копирования. Аргументы со значениями | |
* `null` или `undefined` игнорируются. | |
* @returns {Object} | |
*/ | |
const extend = function extend(...args) { | |
let target = args[0]; | |
let deep; | |
let i; | |
// Обрабатываем ситуацию глубокого копирования. | |
if (typeof target === 'boolean') { | |
deep = target; | |
target = args[1]; | |
i = 2; | |
} else { | |
deep = false; | |
i = 1; | |
} | |
for (; i < arguments.length; i++) { | |
const obj = args[i]; | |
if (!obj) { | |
continue; | |
} | |
for (const key in obj) { | |
if (hasOwnProperty.call(obj, key)) { | |
const val = obj[key]; | |
const isArray = val && Array.isArray(val); | |
// Копируем "плоские" объекты и массивы рекурсивно. | |
if (deep && val && (isPlainObject(val) || isArray)) { | |
const src = target[key]; | |
let clone; | |
if (isArray) { | |
clone = src && Array.isArray(src) ? src : []; | |
} else { | |
clone = src && isPlainObject(src) ? src : {}; | |
} | |
target[key] = extend(deep, clone, val); | |
} else { | |
target[key] = val; | |
} | |
} | |
} | |
} | |
return target; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment