UNPKG

207 BJavaScriptView Raw
1var now = Date.now();
2console.log('[child] child process start!');
3
4setInterval(function () {
5 var interval = Date.now() - now;
6 console.log('[child] Timer finished, time consuming: ' + interval);
7}, 50);