Skip to content

Instantly share code, notes, and snippets.

@jakeboxer
Created December 10, 2012 21:54
Show Gist options
  • Select an option

  • Save jakeboxer/4253713 to your computer and use it in GitHub Desktop.

Select an option

Save jakeboxer/4253713 to your computer and use it in GitHub Desktop.
names.sort (a, b) ->
a = a.toLowerCase()
b = b.toLowerCase()
if a < b
-1
else if a > b
1
else
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment