PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
mout
/
src
/
object
define(['./forOwn', '../lang/isPlainObject'], function (forOwn, isPlainObject) { /** * Deeply copy missing properties in the target from the defaults. */ function deepFillIn(target, defaults){ var i = 0, n = arguments.length, obj; while(++i < n) { obj = arguments[i]; if (obj) { // jshint loopfunc: true forOwn(obj, function(newValue, key) { var curValue = target[key]; if (curValue == null) { target[key] = newValue; } else if (isPlainObject(curValue) && isPlainObject(newValue)) { deepFillIn(curValue, newValue); } }); } } return target; } return deepFillIn; });
[-] functions.js
[edit]
[-] forOwn.js
[edit]
[-] find.js
[edit]
[-] equals.js
[edit]
[-] omit.js
[edit]
[-] deepFillIn.js
[edit]
[-] fillIn.js
[edit]
[-] reduce.js
[edit]
[-] max.js
[edit]
[+]
..
[-] contains.js
[edit]
[-] unset.js
[edit]
[-] some.js
[edit]
[-] pluck.js
[edit]
[-] flatten.js
[edit]
[-] has.js
[edit]
[-] merge.js
[edit]
[-] bindAll.js
[edit]
[-] pick.js
[edit]
[-] min.js
[edit]
[-] get.js
[edit]
[-] deepMatches.js
[edit]
[-] mixIn.js
[edit]
[-] values.js
[edit]
[-] size.js
[edit]
[-] reject.js
[edit]
[-] forIn.js
[edit]
[-] hasOwn.js
[edit]
[-] map.js
[edit]
[-] namespace.js
[edit]
[-] filter.js
[edit]
[-] every.js
[edit]
[-] matches.js
[edit]
[-] result.js
[edit]
[-] deepMixIn.js
[edit]
[-] set.js
[edit]
[-] keys.js
[edit]