()
| 32 | |
| 33 | let cleanedUp = false; |
| 34 | function cleanupTask() { |
| 35 | if (cleanedUp) { |
| 36 | return; |
| 37 | } |
| 38 | |
| 39 | removeTask(); |
| 40 | cleanedUp = true; |
| 41 | } |
| 42 | |
| 43 | const innerSubscription = sourceObservable.subscribe({ |
| 44 | next: (v) => { |
no outgoing calls
no test coverage detected
searching dependent graphs…