Skip to content

Instantly share code, notes, and snippets.

@linus-amg
Created June 24, 2015 16:09
Show Gist options
  • Save linus-amg/0312d76cdc6ebc37d7af to your computer and use it in GitHub Desktop.
Save linus-amg/0312d76cdc6ebc37d7af to your computer and use it in GitHub Desktop.
sortByPosition
var sortByPosition = function(a, b) {
if(a.y<b.y || (a.y==b.y && a.x<b.x)) return -1;
if(a.y==b.x && a.x==b.x) return 0;
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment