diff --git a/src/node.cc b/src/node.cc index 05984745de080f..e11562af1acb96 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2450,9 +2450,10 @@ static void LinkedBinding(const FunctionCallbackInfo& args) { return env->ThrowError("Linked module has no declared entry point."); } - cache->Set(module_name, module->Get(exports_prop)); + auto effective_exports = module->Get(exports_prop); + cache->Set(module_name, effective_exports); - args.GetReturnValue().Set(exports); + args.GetReturnValue().Set(effective_exports); } static void ProcessTitleGetter(Local property,