YinGYa

Results 1 issues of YinGYa

Object.deepExtend = (function f(destination, source){ for (var property in source) { if (source[property] && source[property].constructor && source[property].constructor === Object) { destination[property] = destination[property] || {}; f(destination[property], source[property]); } else {...