mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
8 lines
113 B
TypeScript
8 lines
113 B
TypeScript
export function bunExe() {
|
|
if (Bun.version.includes("debug")) {
|
|
return "bun-debug";
|
|
}
|
|
|
|
return "bun";
|
|
}
|