Guest User

Untitled

a guest
Oct 20th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. lock(client, "myLock", false, function(locked,done) {
  2. if(locked) {
  3. setTimeout(done, 1000);
  4. } else {
  5. console.log('Somebody is already doing the job, I give up')
  6. }
  7. });
Add Comment
Please, Sign In to add comment