(thenable: Thenable<mixed>)
| 100 | } |
| 101 | |
| 102 | export function isThenableResolved(thenable: Thenable<mixed>): boolean { |
| 103 | const status = thenable.status; |
| 104 | return status === 'fulfilled' || status === 'rejected'; |
| 105 | } |
| 106 | |
| 107 | export function trackUsedThenable<T>( |
| 108 | thenableState: ThenableState, |
no outgoing calls
no test coverage detected