Equivalent of JS Math.random() but deterministic; seeded by the invocation ID of the current invocation,
each call will return a new pseudorandom float within the range [0,1)
Returns number
uuidv4
uuidv4():string
Using the same random source and seed as random(), produce a UUID version 4 string. This is inherently predictable
based on the invocation ID and should not be used in cryptographic contexts
Equivalent of JS
Math.random()
but deterministic; seeded by the invocation ID of the current invocation, each call will return a new pseudorandom float within the range [0,1)