Skip to content

Commit

Permalink
lib: let deps require prefixed modules
Browse files Browse the repository at this point in the history
  • Loading branch information
KhafraDev committed Oct 4, 2023
1 parent 609b13e commit 3b71d1d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/internal/bootstrap/realm.js
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ function requireBuiltin(id) {
// Allow internal modules from dependencies to require
// other modules from dependencies by providing fallbacks.
function requireWithFallbackInDeps(request) {
if (!BuiltinModule.map.has(request)) {
if (StringPrototypeStartsWith(request, 'node:')) {
request = StringPrototypeSlice(request, 5);
} else if (!BuiltinModule.map.has(request)) {
request = `internal/deps/${request}`;
}
return requireBuiltin(request);
Expand Down

0 comments on commit 3b71d1d

Please sign in to comment.