Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.             function check(idx, isLast) {
  2.                 return function(err, res) {
  3.             //some logic here
  4.                     if(isLast) { done(); }
  5.                 };
  6.             }
  7.  
  8.             for (var idx=0; idx<array.length; idx++) {
  9.         somefunction(check(idx, idx === array.length - 1));
  10.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement