summaryrefslogtreecommitdiffhomepage
path: root/src/nodejs/unit-http/require_shim.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'src/nodejs/unit-http/require_shim.mjs')
-rw-r--r--src/nodejs/unit-http/require_shim.mjs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/nodejs/unit-http/require_shim.mjs b/src/nodejs/unit-http/require_shim.mjs
deleted file mode 100644
index 067d63d4..00000000
--- a/src/nodejs/unit-http/require_shim.mjs
+++ /dev/null
@@ -1,18 +0,0 @@
-// must be ran as part of a --loader or --experimental-loader param
-export async function resolve(specifier, context, defaultResolver) {
- switch (specifier) {
- case "websocket":
- return {
- url: new URL("./websocket.js", import.meta.url).href,
- format: "cjs"
- }
-
- case "http":
- return {
- url: new URL("./http.js", import.meta.url).href,
- format: "cjs"
- }
- }
-
- return defaultResolver(specifier, context, defaultResolver)
-}