PATH:
usr
/
local
/
lib
/
node_modules
/
bower
/
lib
/
node_modules
/
inquirer
/
node_modules
/
lodash
/
object
var assign = require('./assign'), assignDefaults = require('../internal/assignDefaults'), createDefaults = require('../internal/createDefaults'); /** * Assigns own enumerable properties of source object(s) to the destination * object for all destination properties that resolve to `undefined`. Once a * property is set, additional values of the same property are ignored. * * **Note:** This method mutates `object`. * * @static * @memberOf _ * @category Object * @param {Object} object The destination object. * @param {...Object} [sources] The source objects. * @returns {Object} Returns `object`. * @example * * _.defaults({ 'user': 'barney' }, { 'age': 36 }, { 'user': 'fred' }); * // => { 'user': 'barney', 'age': 36 } */ var defaults = createDefaults(assign, assignDefaults); module.exports = defaults;
[-] functions.js
[edit]
[-] forOwn.js
[edit]
[-] omit.js
[edit]
[-] transform.js
[edit]
[-] forInRight.js
[edit]
[+]
..
[-] findKey.js
[edit]
[-] findLastKey.js
[edit]
[-] mapValues.js
[edit]
[-] valuesIn.js
[edit]
[-] forOwnRight.js
[edit]
[-] extend.js
[edit]
[-] has.js
[edit]
[-] keysIn.js
[edit]
[-] merge.js
[edit]
[-] pick.js
[edit]
[-] methods.js
[edit]
[-] get.js
[edit]
[-] values.js
[edit]
[-] pairs.js
[edit]
[-] forIn.js
[edit]
[-] mapKeys.js
[edit]
[-] defaultsDeep.js
[edit]
[-] invert.js
[edit]
[-] create.js
[edit]
[-] result.js
[edit]
[-] defaults.js
[edit]
[-] set.js
[edit]
[-] assign.js
[edit]
[-] keys.js
[edit]