(params: { position: number })
| 86 | * Position 1 → 0ms (next tick picks you up). |
| 87 | */ |
| 88 | export function estimateWaitMs(params: { position: number }): number { |
| 89 | const { position } = params |
| 90 | if (position <= 1) return 0 |
| 91 | return (position - 1) * WAIT_MS_PER_SPOT_AHEAD |
| 92 | } |
no outgoing calls
no test coverage detected