setInterval() in node.js follows what browsers do: intervals >
2,147,483,647 milliseconds are treated as $smallest_timeout intervals
(= 1 ms in node.js.)
In other words, `setInterval(function() {}, Infinity)` is identical to
`setInterval(function() {}, 1)`.