mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-08 02:17:48 +00:00
Apply even more let/const transforms.
This commit is contained in:
@@ -30,7 +30,7 @@ import keys from './keys.js';
|
||||
* defaults({ 'a': 1 }, { 'b': 2 }, { 'a': 3 });
|
||||
* // => { 'a': 1, 'b': 2 }
|
||||
*/
|
||||
var assignWith = createAssigner((object, source, srcIndex, customizer) => {
|
||||
const assignWith = createAssigner((object, source, srcIndex, customizer) => {
|
||||
copyObject(source, keys(source), object, customizer);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user