Skip to content

Instantly share code, notes, and snippets.

@brianjlandau
Created March 25, 2009 14:22
Show Gist options
  • Select an option

  • Save brianjlandau/85491 to your computer and use it in GitHub Desktop.

Select an option

Save brianjlandau/85491 to your computer and use it in GitHub Desktop.
function check_all_pass(){
var pass = true;
for (i = 0; i < arguments.length; i += 1){
if (!arguments[i]()){
pass = false;
}
}
return pass;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment