mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
18 lines
462 B
JavaScript
18 lines
462 B
JavaScript
import copyObject from './copyObject.js'
|
|
import keys from '../keys.js'
|
|
|
|
/**
|
|
* The base implementation of `assign` without support for multiple sources
|
|
* or `customizer` functions.
|
|
*
|
|
* @private
|
|
* @param {Object} object The destination object.
|
|
* @param {Object} source The source object.
|
|
* @returns {Object} Returns `object`.
|
|
*/
|
|
function baseAssign(object, source) {
|
|
return object && copyObject(source, keys(source), object)
|
|
}
|
|
|
|
export default baseAssign
|