mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Bump to v4.11.0.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import copyObjectWith from './_copyObjectWith';
|
||||
import copyObject from './_copyObject';
|
||||
import createAssigner from './_createAssigner';
|
||||
import keys from './keys';
|
||||
|
||||
@@ -30,7 +30,7 @@ import keys from './keys';
|
||||
* // => { 'a': 1, 'b': 2 }
|
||||
*/
|
||||
var assignWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||||
copyObjectWith(source, keys(source), object, customizer);
|
||||
copyObject(source, keys(source), object, customizer);
|
||||
});
|
||||
|
||||
export default assignWith;
|
||||
|
||||
Reference in New Issue
Block a user