(path: string)
| 31 | } |
| 32 | |
| 33 | function readFile(path: string) { |
| 34 | try { |
| 35 | const file = readFileSync(path, 'utf-8'); |
| 36 | return file.split('\n'); |
| 37 | } catch (e) { |
| 38 | console.error('Error reading file: ' + path); |
| 39 | throw e; |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function findCodeSandboxes( |
| 44 | codeSandboxTransformFn: (mdxPath: string, srcPath: string, lines: string[]) => string[], |
no outgoing calls
no test coverage detected
searching dependent graphs…