(x: any)
| 255 | } |
| 256 | |
| 257 | function isIterable(x: any): x is Iterable<unknown> { |
| 258 | return Symbol.iterator in x |
| 259 | } |
| 260 | |
| 261 | export default function Explorer(props: ExplorerProps) { |
| 262 | const theme = useTheme() |
no outgoing calls
no test coverage detected
searching dependent graphs…