Sha256: 0a157b56f10e3251e3feb04d663da0055330a76d14b0808e389c088d97db88ce
Contents?: true
Size: 436 Bytes
Versions: 14
Compression:
Stored size: 436 Bytes
Contents
/** * 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 typeof objectValue == 'undefined' ? sourceValue : objectValue; } module.exports = assignDefaults;
Version data entries
14 entries across 7 versions & 1 rubygems