From ea2b65d4834d864029299809fb23f40ba2a56f90 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Mon, 2 Jan 2023 21:05:56 -0800 Subject: Draw the owl --- src/bun.js/postgres/postgres.exports.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/bun.js/postgres/postgres.exports.js (limited to 'src/bun.js/postgres/postgres.exports.js') diff --git a/src/bun.js/postgres/postgres.exports.js b/src/bun.js/postgres/postgres.exports.js new file mode 100644 index 000000000..beae64f24 --- /dev/null +++ b/src/bun.js/postgres/postgres.exports.js @@ -0,0 +1,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.", + ); +} -- cgit v1.2.3