(source: string)
| 282 | ); |
| 283 | |
| 284 | const isSolidSource = (source: string): boolean => |
| 285 | source.includes(`from 'solid-js`) || |
| 286 | source.includes('from "solid-js') || |
| 287 | source.includes(`from 'tinybase/ui-solid'`) || |
| 288 | source.includes('from "tinybase/ui-solid"'); |
| 289 | |
| 290 | const isOtherUiSource = (source: string): boolean => |
| 291 | source.includes(`from 'react'`) || |
no outgoing calls
no test coverage detected
searching dependent graphs…