Files
biomedjs/node_modules/lodash/internal/assignDefaults.js

14 lines
428 B
JavaScript
Raw Permalink Normal View History

2015-04-20 05:31:12 -04:00
/**
* Used by `_.defaults` to customize its `_.assign` use.
*
* @private
* @param {*} objectValue The destination object property value.
* @param {*} sourceValue The source object property value.
* @returns {*} Returns the value to assign to the destination object.
*/
function assignDefaults(objectValue, sourceValue) {
return objectValue === undefined ? sourceValue : objectValue;
}
module.exports = assignDefaults;