()
| 132 | }; |
| 133 | |
| 134 | const cancelPull = () => { |
| 135 | if (state.status === 'pulling') { |
| 136 | abortController?.abort(); |
| 137 | } |
| 138 | }; |
| 139 | |
| 140 | const subscribe = (listener: Listener): (() => void) => { |
| 141 | listeners.push(listener); |
nothing calls this directly
no outgoing calls
no test coverage detected