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 418419a commit adba7dfCopy full SHA for adba7df
test/built-ins/RegExp/named-groups/duplicate-names.js
@@ -19,4 +19,4 @@ assert.compareArray(["aabb", undefined, "bb"], matchResult);
19
assert.sameValue(matchResult.groups.x, "bb");
20
21
let notMatched = "abab".match(/(?:(?:(?<x>a)|(?<x>b))\k<x>){2}/);
22
-assert.sameValue(null, notMatched);
+assert.sameValue(notMatched, null);
0 commit comments