summaryrefslogtreecommitdiffhomepage
path: root/src/nodejs/unit-http/require_shim.js
diff options
context:
space:
mode:
authorOisin Canty <o.canty@f5.com>2021-05-24 09:01:42 +0000
committerOisin Canty <o.canty@f5.com>2021-05-24 09:01:42 +0000
commitc160ea11e4ece4db52731ac8b83dd09ca2d1ef11 (patch)
treeebfd605f6e93a05b65bae5c327b47a1a764a8d63 /src/nodejs/unit-http/require_shim.js
parentd6439002371d0bc73183c9d3d28df4f62ce0b972 (diff)
downloadunit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.gz
unit-c160ea11e4ece4db52731ac8b83dd09ca2d1ef11.tar.bz2
Node.js: renamed "require_shim" to "loader".
Diffstat (limited to 'src/nodejs/unit-http/require_shim.js')
-rw-r--r--src/nodejs/unit-http/require_shim.js27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/nodejs/unit-http/require_shim.js b/src/nodejs/unit-http/require_shim.js
deleted file mode 100644
index 2b307629..00000000
--- a/src/nodejs/unit-http/require_shim.js
+++ /dev/null
@@ -1,27 +0,0 @@
-// can only be ran as part of a --require param on the node process
-if (module.parent && module.parent.id === "internal/preload") {
- const { Module } = require("module")
-
- if (!Module.prototype.require.__unit_shim) {
- const http = require("./http")
- const websocket = require("./websocket")
-
- const original = Module.prototype.require;
-
- Module.prototype.require = function (id) {
- switch(id) {
- case "http":
- case "unit-http":
- return http
-
- case "websocket":
- case "unit-http/websocket":
- return websocket
- }
-
- return original.apply(this, arguments);
- }
-
- Module.prototype.require.__unit_shim = true;
- }
-}