(specifier: string)
| 51 | }; |
| 52 | |
| 53 | const getDependencyName = (specifier: string): string => |
| 54 | specifier.startsWith('@') |
| 55 | ? specifier.split('/').slice(0, 2).join('/') |
| 56 | : specifier.split('/')[0]; |
| 57 | |
| 58 | const getDependencies = ( |
| 59 | imports: {[specifier: string]: string}, |
no outgoing calls
no test coverage detected
searching dependent graphs…