the-forest/client/node_modules/@libsql/hrana-client/lib-esm/util.js
2024-09-17 20:35:18 -04:00

5 lines
130 B
JavaScript

import { InternalError } from "./errors.js";
export function impossible(value, message) {
throw new InternalError(message);
}