Can someone recommend the best solution for getting the latest record belonging to a partition key when using the azure-storage library in Node? Since there is no .orderBy() option... what is the best approach?
In C# I would probably do something like:
var latestRecord = results.OrderByDescending(r => r.Timestamp).FirstOrDefault();
What would the equivalent be when using this node library for Table Storage?