File size: 86 Bytes
c211499
 
 
1
2
3
4
export default function(a, b) {
  return b < a ? -1 : b > a ? 1 : b >= a ? 0 : NaN;
}