(value: any)
| 441 | } |
| 442 | |
| 443 | function propsForError(value: any): string { |
| 444 | const props = Object.getOwnPropertyNames(value); |
| 445 | return `[${props.map((p) => `"${p}"`).join(", ")}]`; |
| 446 | } |
| 447 | |
| 448 | const isAsyncIterableIterator = (value: any): value is AsyncIterableIterator<unknown> => |
| 449 | value != null && typeof value === "object" && typeof value[Symbol.asyncIterator] === "function"; |
no outgoing calls
no test coverage detected
searching dependent graphs…