(path: string)
| 9 | const RUNTIME_MARKER = '.runtime-version'; |
| 10 | |
| 11 | function ensureDirectory(path: string): void { |
| 12 | mkdirSync(path, { recursive: true }); |
| 13 | } |
| 14 | |
| 15 | const bunRuntime = (globalThis as typeof globalThis & { |
| 16 | Bun?: { file: (source: string | URL) => { arrayBuffer: () => Promise<ArrayBuffer> } }; |
no outgoing calls
no test coverage detected