Generate an infinite iterable of the same integer value in milliseconds.
If you pass a non-integral value, like { at: 2.5 }, it will be rounded to the nearest integral value using Math.round, i.e. 3 in that case.
{ at: 2.5 }
Math.round
3
Optional
Delay duration in milliseconds. Default is 1 (immediate).
1
Generate an infinite iterable of the same integer value in milliseconds.
If you pass a non-integral value, like
{ at: 2.5 }
, it will be rounded to the nearest integral value usingMath.round
, i.e.3
in that case.