mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
5 lines
142 B
TypeScript
5 lines
142 B
TypeScript
// This logs the result at build time
|
|
export function unreachable(call) {
|
|
throw new Error(call.arguments[0].toString() || "unreachable");
|
|
}
|