aboutsummaryrefslogtreecommitdiff
path: root/src/bun.js/postgres/postgres.exports.js
blob: beae64f24dbaeb29474dfc30a6be183ce767eee5 (plain) (blame)
1
2
3
4
5
6
7
8
var symbolFor = Symbol.for;

const lazy = globalThis[symbolFor("Bun.lazy")];
if (!lazy || typeof lazy !== "function") {
  throw new Error(
    "Something went wrong while loading Bun. Expected 'Bun.lazy' to be defined.",
  );
}