-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Lines 608 to 613 in e8ac1da
| _.extend = function (obj1, ...objects) { | |
| obj1 = Object.assign(objects) | |
| return obj1 | |
| } |
@SpecTrail5, it looks like the issue here is that objects is potentially an array of objects. So you'll want to iterate through the array of objects, and for each object, add the properties of the object to obj1 using the Object.assign() method
Metadata
Metadata
Assignees
Labels
No labels