iRon7 / Join-Object

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

`*` should return all _common_ properties #34

Closed iRon7 closed 1 year ago

iRon7 commented 1 year ago

Currently '*' returns the union of the left - and the right properties which is quiet pointless as a join on a missing property will always cause a mismatch. It makes more sense to return the intersection of the left - and the right properties.

iRon7 commented 1 year ago

This is already how it is implemented.