(source: string)
| 276 | }; |
| 277 | |
| 278 | const replaceRunnableImports = (source: string): string => |
| 279 | source.replace( |
| 280 | /import (type )?(.*?) from ['"](.*?)['"];/gms, |
| 281 | getRunnableImport, |
| 282 | ); |
| 283 | |
| 284 | const isSolidSource = (source: string): boolean => |
| 285 | source.includes(`from 'solid-js`) || |
no outgoing calls
no test coverage detected
searching dependent graphs…