We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e027791 commit 9e6a62fCopy full SHA for 9e6a62f
src/node_url_pattern.cc
@@ -77,7 +77,7 @@ URLPatternRegexProvider::create_instance(std::string_view pattern,
77
bool ignore_case) {
78
auto isolate = Isolate::GetCurrent();
79
auto env = Environment::GetCurrent(isolate);
80
- int flags = RegExp::Flags::kUnicodeSets;
+ int flags = RegExp::Flags::kUnicodeSets | RegExp::Flags::kDotAll;
81
if (ignore_case) {
82
flags |= static_cast<int>(RegExp::Flags::kIgnoreCase);
83
}
0 commit comments