the-forest/client/node_modules/@libsql/hrana-client/lib-esm/util.js

5 lines
130 B
JavaScript
Raw Normal View History

2024-09-17 20:35:18 -04:00
import { InternalError } from "./errors.js";
export function impossible(value, message) {
throw new InternalError(message);
}