mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 17:47:49 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -33,7 +33,7 @@ import keysIn from './keysIn.js';
|
||||
* _.assignIn({ 'a': 0 }, new Foo, new Bar);
|
||||
* // => { 'a': 1, 'b': 2, 'c': 3, 'd': 4 }
|
||||
*/
|
||||
var assignIn = createAssigner(function(object, source) {
|
||||
var assignIn = createAssigner((object, source) => {
|
||||
copyObject(source, keysIn(source), object);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user