Guest User

Untitled

a guest
Jan 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function(obj, cb){
  2. var count = 0;
  3.  
  4. for(var i in obj){
  5. asynchronous(obj[i], doCheck)
  6. }
  7.  
  8. function doCheck(){
  9. count++
  10. if(count == obj.lenth);
  11. cb();
  12. }
  13. }
Add Comment
Please, Sign In to add comment