mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -31,7 +31,7 @@ import keysIn from './keysIn.js';
|
||||
* defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
|
||||
* // => { 'a': 1, 'b': 2 }
|
||||
*/
|
||||
var assignInWith = createAssigner(function(object, source, srcIndex, customizer) {
|
||||
var assignInWith = createAssigner((object, source, srcIndex, customizer) => {
|
||||
copyObject(source, keysIn(source), object, customizer);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user