Sha256: 2afe8cd19ba4639910f4e7966a75bf2825ef0d61158c294718562d1b25e2ddb1
Contents?: true
Size: 428 Bytes
Versions: 153
Compression:
Stored size: 428 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 objectValue === undefined ? sourceValue : objectValue; } module.exports = assignDefaults;
Version data entries
153 entries across 80 versions & 8 rubygems