descending.js 86 Bytes
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
export default function(a, b) {
  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
}