You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
9334ab0: Change return of groupArrayBy to an object of groups.
This allows for more flexibility when working with groups. To migrate existing code that uses groupArrayBy, simply wrap the call with Object.values()
// If you had this beforeconstusersByRole=groupArrayBy(users,(user)=>user.role);// Change it to thisconstusersByRole=Object.values(groupArrayBy(users,(user)=>user.role));