(error)
| 3549 | } |
| 3550 | |
| 3551 | function isStopError(error) { |
| 3552 | const message = typeof error === 'string' ? error : error?.message; |
| 3553 | return message === STOP_ERROR_MESSAGE; |
| 3554 | } |
| 3555 | |
| 3556 | function isRetryableContentScriptTransportError(error) { |
| 3557 | const message = String(typeof error === 'string' ? error : error?.message || ''); |
no outgoing calls
no test coverage detected