Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. function sleep(seconds) {
  2. const startTime = new Date();
  3. const endTime = startTime.setSeconds(startTime.getSeconds() + seconds);
  4. while (new Date() < endTime) {
  5. continue;
  6. }
  7. return;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement