mirror of https://github.com/nodejs/node.git
7 lines
85 B
JavaScript
7 lines
85 B
JavaScript
|
'use strict';
|
||
|
let x = 0;
|
||
|
function heartbeat() {
|
||
|
++x;
|
||
|
}
|
||
|
setInterval(heartbeat, 50);
|