A transformer that passes through all values with time delays between them
Description
This function yields the first value immediately and waits a random amount of time
before each following value; nothing is waited after the last one.
The delay consists of a fixed component plus a random component.
Example
// Yield values with 100-600ms delays between them constthrottled = awaitG.pipe( G.ofIterable([1, 2, 3, 4, 5]), G.jitter(500, 100), G.array );
Creates a transformer that adds random time delays between yielded values.