(s: string, ext: string | null = null)
| 12 | import path from 'path'; |
| 13 | |
| 14 | function wrapWithTripleBackticks(s: string, ext: string | null = null): string { |
| 15 | return `\`\`\`${ext ?? ''} |
| 16 | ${s} |
| 17 | \`\`\``; |
| 18 | } |
| 19 | const SPROUT_SEPARATOR = '\n### Eval output\n'; |
| 20 | |
| 21 | export function writeOutputToString( |
no outgoing calls
no test coverage detected