aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/bunExe.ts
blob: 2f1a89cd22464fe23f1cb9c8a0a74b9aa4598135 (plain) (blame)
1
2
3
4
5
6
7
export function bunExe() {
  if (Bun.version.includes("debug")) {
    return "bun-debug";
  }

  return "bun";
}