History of 2020-08-24 Sorting object keys with Lodash

2020-08-24
20:24 UTC Revision 1 . . . . mborkI have been extremely busy recently, so I have only a short tip today. Imagine having a JavaScript object like this: { a: 1, b: 3, c: 2, } and needing to have an (almost) identical object, but sorted by increasing values. (Yes, I know that theoretically the order of object properties does not matter and should not be relied upon, but come on.)