Skip to content

Instantly share code, notes, and snippets.

@rndme
Created January 31, 2016 09:19
Show Gist options
  • Save rndme/ca9f13ad8a156e883782 to your computer and use it in GitHub Desktop.
Save rndme/ca9f13ad8a156e883782 to your computer and use it in GitHub Desktop.
function isSorted(arr, fn){
return !arr.some(function(a,b,c){
if(!b) return;
return fn(a, c[b-1])!==1;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment