sort-array icon indicating copy to clipboard operation
sort-array copied to clipboard

Should be possible to sort using a standard compare function

Open 75lb opened this issue 4 years ago • 0 comments

Update customOrders to also accept a standard sort compare function.

E.g.

sortArray(partsOfTheDay, {
  order: 'time',
  customOrders: {
    time: (a, b) => return a > b ? 1 : -1 // etc
  }
})

75lb avatar Sep 05 '21 16:09 75lb