mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 01:17:50 +00:00
Bump to v4.11.0.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
var copyObjectWith = require('./_copyObjectWith'),
|
||||
var copyObject = require('./_copyObject'),
|
||||
createAssigner = require('./_createAssigner'),
|
||||
keysIn = require('./keysIn');
|
||||
|
||||
@@ -31,7 +31,7 @@ var copyObjectWith = require('./_copyObjectWith'),
|
||||
* // => { 'a': 1, 'b': 2 }
|
||||
*/
|
||||
var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||||
copyObjectWith(source, keysIn(source), object, customizer);
|
||||
copyObject(source, keysIn(source), object, customizer);
|
||||
});
|
||||
|
||||
module.exports = assignInWith;
|
||||
|
||||
Reference in New Issue
Block a user