mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
6 lines
100 B
JavaScript
6 lines
100 B
JavaScript
|
function next (i) {
|
||
|
if (i <= 0) return;
|
||
|
setTimeout(function () { next(i-1); }, 1);
|
||
|
}
|
||
|
next(700);
|