(error)
| 46 | } |
| 47 | |
| 48 | function isStopError(error) { |
| 49 | const message = typeof error === 'string' ? error : error?.message; |
| 50 | return message === STOP_ERROR_MESSAGE; |
| 51 | } |
| 52 | |
| 53 | function throwIfStopped() { |
| 54 | if (flowStopped) { |
no outgoing calls
no test coverage detected