(v: any)
| 35 | } |
| 36 | |
| 37 | export function isString(v: any): v is string { |
| 38 | return typeof v === 'string'; |
| 39 | } |
| 40 | |
| 41 | function _innerWaitForThing(obj: any, path: string): Promise<any> { |
| 42 | const timeGap = 200; |
no outgoing calls
no test coverage detected
searching dependent graphs…