mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 01:57:50 +00:00
Apply even more let/const transforms.
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((object, source, srcIndex, customizer) => {
|
||||
const assignInWith = createAssigner((object, source, srcIndex, customizer) => {
|
||||
copyObject(source, keysIn(source), object, customizer);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user