diff options
author | Oisin Canty <o.canty@f5.com> | 2021-05-24 09:01:42 +0000 |
---|---|---|
committer | Oisin Canty <o.canty@f5.com> | 2021-05-24 09:01:42 +0000 |
commit | c160ea11e4ece4db52731ac8b83dd09ca2d1ef11 (patch) | |
tree | ebfd605f6e93a05b65bae5c327b47a1a764a8d63 /src/nodejs/unit-http/require_shim.mjs | |
parent | d6439002371d0bc73183c9d3d28df4f62ce0b972 (diff) | |
download | unit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.gz unit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.bz2 |
Node.js: renamed "require_shim" to "loader".
Diffstat (limited to 'src/nodejs/unit-http/require_shim.mjs')
-rw-r--r-- | src/nodejs/unit-http/require_shim.mjs | 18 |
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) -} |