We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd4685 commit afcff17Copy full SHA for afcff17
src/node_cjs_lexer.cc
@@ -77,7 +77,8 @@ void Parse(const FunctionCallbackInfo<Value>& args) {
77
// Convert exports to JS Set
78
Local<Set> exports_set = Set::New(isolate);
79
for (const auto& exp : analysis.exports) {
80
- exports_set->Add(context, CreateString(isolate, DOT_NAME(exp))).ToLocalChecked();
+ exports_set->Add(context, CreateString(isolate, DOT_NAME(exp)))
81
+ .ToLocalChecked();
82
}
83
84
// Convert reexports to JS array using batch creation
0 commit comments