Skip to content

Commit 9a0bcfc

Browse files
committed
fs: export realpathCacheKey from internal/fs
Move the internally defined symbol `fs.realpathCacheKey` to the internal fs module, where it’s more appropriate. The symbol was recently added in c084287, but since `internal/fs` is only available in the v7.x branch, this needs to be a separate follow-up change. PR-URL: #8862 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 7af680e commit 9a0bcfc

File tree

3 files changed

+5
-9
lines changed

3 files changed

+5
-9
lines changed

lib/fs.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -1455,10 +1455,6 @@ function encodeRealpathResult(result, options, err) {
14551455
}
14561456
}
14571457

1458-
// This is removed from the fs exports in lib/module.js in order to make
1459-
// sure that this stays internal.
1460-
const realpathCacheKey = fs.realpathCacheKey = Symbol('realpathCacheKey');
1461-
14621458
fs.realpathSync = function realpathSync(p, options) {
14631459
options = getOptions(options, {});
14641460
nullCheck(p);
@@ -1468,7 +1464,7 @@ fs.realpathSync = function realpathSync(p, options) {
14681464

14691465
const seenLinks = {};
14701466
const knownHard = {};
1471-
const cache = options[realpathCacheKey];
1467+
const cache = options[internalFS.realpathCacheKey];
14721468
const original = p;
14731469

14741470
const maybeCachedResult = cache && cache.get(p);

lib/internal/fs.js

+2
Original file line numberDiff line numberDiff line change
@@ -96,3 +96,5 @@ SyncWriteStream.prototype.destroy = function() {
9696
};
9797

9898
exports.SyncWriteStream = SyncWriteStream;
99+
100+
exports.realpathCacheKey = Symbol('realpathCacheKey');

lib/module.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const internalModule = require('internal/module');
66
const vm = require('vm');
77
const assert = require('assert').ok;
88
const fs = require('fs');
9+
const internalFS = require('internal/fs');
910
const path = require('path');
1011
const internalModuleReadFile = process.binding('fs').internalModuleReadFile;
1112
const internalModuleStat = process.binding('fs').internalModuleStat;
@@ -113,9 +114,6 @@ function tryPackage(requestPath, exts, isMain) {
113114
// Set to an empty Map to reset.
114115
const realpathCache = new Map();
115116

116-
const realpathCacheKey = fs.realpathCacheKey;
117-
delete fs.realpathCacheKey;
118-
119117
// check if the file exists and is not a directory
120118
// if using --preserve-symlinks and isMain is false,
121119
// keep symlinks intact, otherwise resolve to the
@@ -130,7 +128,7 @@ function tryFile(requestPath, isMain) {
130128

131129
function toRealPath(requestPath) {
132130
return fs.realpathSync(requestPath, {
133-
[realpathCacheKey]: realpathCache
131+
[internalFS.realpathCacheKey]: realpathCache
134132
});
135133
}
136134

0 commit comments

Comments
 (0)