(v: any)
| 76 | } |
| 77 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 78 | export function isPromiseLike<T>(v: any): v is PromiseLike<T> { |
| 79 | return typeof v?.then === 'function'; |
| 80 | } |
| 81 | |
| 82 | //====================== |
| 83 | // Deferred |
no outgoing calls
no test coverage detected