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