Skip to content

Instantly share code, notes, and snippets.

@Altreus
Forked from adamkdean/gist:10363787
Created April 10, 2014 10:02
Show Gist options
  • Save Altreus/10363977 to your computer and use it in GitHub Desktop.
Save Altreus/10363977 to your computer and use it in GitHub Desktop.
return (isNaN(ai) || isNaN(bi)) ?
(a > b) ? 1
: (a < b) ? -1
: 0 // not floats
: (ai > bi) ? 1
: (ai < bi) ? -1
: 0;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment