2019-07-16 17:23:04 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Cheng Zhao <zcbenz@gmail.com>
|
|
|
|
Date: Sun, 27 Mar 2016 14:42:26 +0900
|
|
|
|
Subject: Pass all globals through "require"
|
|
|
|
|
|
|
|
(cherry picked from commit 7d015419cb7a0ecfe6728431a4ed2056cd411d62)
|
|
|
|
|
|
|
|
diff --git a/lib/internal/modules/cjs/loader.js b/lib/internal/modules/cjs/loader.js
|
2020-04-14 16:59:03 +00:00
|
|
|
index 92bc9e738f508d66948b71c4967a5c3d2b0dca6c..ad82a7ab05e253a5e93a61bcaf4066cdb29017ea 100644
|
2019-07-16 17:23:04 +00:00
|
|
|
--- a/lib/internal/modules/cjs/loader.js
|
|
|
|
+++ b/lib/internal/modules/cjs/loader.js
|
2020-04-14 16:59:03 +00:00
|
|
|
@@ -104,6 +104,13 @@ const {
|
2019-07-16 17:23:04 +00:00
|
|
|
CHAR_COLON
|
|
|
|
} = require('internal/constants');
|
|
|
|
|
|
|
|
+// Store the "global" variable from global scope into a local scope, so we can
|
|
|
|
+// still reference it from this file even after we deleted the "global" variable
|
|
|
|
+// from the global scope.
|
|
|
|
+const localGlobal = global;
|
|
|
|
+// Do the same for "Buffer".
|
|
|
|
+const localBuffer = Buffer;
|
|
|
|
+
|
|
|
|
const isWindows = process.platform === 'win32';
|
|
|
|
|
2020-02-24 21:02:04 +00:00
|
|
|
const relativeResolveCache = ObjectCreate(null);
|
2020-04-14 16:59:03 +00:00
|
|
|
@@ -1151,10 +1158,12 @@ Module.prototype._compile = function(content, filename) {
|
2019-07-16 17:23:04 +00:00
|
|
|
if (requireDepth === 0) statCache = new Map();
|
|
|
|
if (inspectorWrapper) {
|
|
|
|
result = inspectorWrapper(compiledWrapper, thisValue, exports,
|
|
|
|
- require, module, filename, dirname);
|
2020-02-24 21:02:04 +00:00
|
|
|
+ require, module, filename, dirname,
|
|
|
|
+ process, localGlobal, localBuffer);
|
2019-07-16 17:23:04 +00:00
|
|
|
} else {
|
|
|
|
result = compiledWrapper.call(thisValue, exports, require, module,
|
|
|
|
- filename, dirname);
|
|
|
|
+ filename, dirname, process, localGlobal,
|
|
|
|
+ localBuffer);
|
|
|
|
}
|
2020-02-24 21:02:04 +00:00
|
|
|
hasLoadedAnyUserCJSModule = true;
|
2019-07-16 17:23:04 +00:00
|
|
|
if (requireDepth === 0) statCache = null;
|