(timeoutMs: number)
| 126 | const looksLikeInterruptedError = (message: string): boolean => /\binterrupted\b/i.test(message); |
| 127 | |
| 128 | const timeoutMessage = (timeoutMs: number): string => |
| 129 | `QuickJS execution timed out after ${timeoutMs}ms`; |
| 130 | |
| 131 | type DeadlineTracker = { |
| 132 | /** Current absolute deadline, or null while at least one dispatch is in flight. */ |
no outgoing calls
no test coverage detected