iRon7 / Join-Object

Combines two objects lists based on a related property between them.
MIT License
107 stars 13 forks source link

merge repeating names #21

Closed iRon7 closed 3 years ago

iRon7 commented 3 years ago
0..9 |Join 3, 5, 6 |Join 1, 2, 4 |Join 7, 8, 9 -Name Index, Sum, Sum, Sum

Actual

(properties with the same name are overwritten)

Index Sum
----- ---
    0   7
    1   8
    2   9

Expected

(properties with the same name should be joined)

Index Sum
----- ---------
    0 {3, 1, 7}
    1 {5, 2, 8}
    2 {6, 4, 9}
iRon7 commented 3 years ago

Fixed in 3.4.7