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 05d80a6 commit 23065b2Copy full SHA for 23065b2
src/node_process_events.cc
@@ -105,7 +105,7 @@ std::set<std::string> experimental_warnings;
105
106
Maybe<bool> ProcessEmitExperimentalWarning(Environment* env,
107
const std::string& warning) {
108
- if (experimental_warnings.contains(warning)) return Nothing<bool>();
+ if (!experimental_warnings.contains(warning)) return Nothing<bool>();
109
110
experimental_warnings.insert(warning);
111
std::string message(warning);
0 commit comments