We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa93e74 commit 699ac51Copy full SHA for 699ac51
src/lib.rs
@@ -76,7 +76,8 @@ impl UrlPattern {
76
dict.set_item("pathname", self.0.pathname()).unwrap();
77
dict.set_item("search", self.0.search()).unwrap();
78
dict.set_item("hash", self.0.hash()).unwrap();
79
- dict.set_item("hasRegExpGroups", self.0.has_regexp_groups()).unwrap();
+ dict.set_item("hasRegExpGroups", self.0.has_regexp_groups())
80
+ .unwrap();
81
format!("URLPattern({})", dict)
82
}
83
0 commit comments