fix order

This commit is contained in:
Kevin Gibbons 2022-08-07 20:11:29 -07:00 committed by Philip Chimento
parent 418419a345
commit adba7dfd9c
1 changed files with 1 additions and 1 deletions

View File

@ -19,4 +19,4 @@ assert.compareArray(["aabb", undefined, "bb"], matchResult);
assert.sameValue(matchResult.groups.x, "bb");
let notMatched = "abab".match(/(?:(?:(?<x>a)|(?<x>b))\k<x>){2}/);
assert.sameValue(null, notMatched);
assert.sameValue(notMatched, null);