Files
bun.sh/test/bun.js/bunExe.ts
2022-11-11 16:02:35 -08:00

8 lines
113 B
TypeScript

export function bunExe() {
if (Bun.version.includes("debug")) {
return "bun-debug";
}
return "bun";
}