()
| 8 | * - Running a Bun-compiled standalone executable |
| 9 | */ |
| 10 | export function isRunningWithBun(): boolean { |
| 11 | // https://bun.com/guides/util/detect-bun |
| 12 | return process.versions.bun !== undefined |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Detects if running as a Bun-compiled standalone executable. |
no outgoing calls
no test coverage detected