Skip to content

Commit

Permalink
chore: restore test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Sep 13, 2019
1 parent d9a3847 commit fbf09b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
@@ -1,3 +1,3 @@
"foo".match(babelHelpers.wrapRegExp(/([\0-\t\x0B\f\x0E-\u2027\u202A-\uFFFF])\1/, {
"foo".match(babelHelpers.wrapRegExp(/(.)\1/, {
double: 1
}));
@@ -1,3 +1,3 @@
"abba".match(babelHelpers.wrapRegExp(/([\0-\t\x0B\f\x0E-\u2027\u202A-\uFFFF])([\0-\t\x0B\f\x0E-\u2027\u202A-\uFFFF])\2\1/, {
"abba".match(babelHelpers.wrapRegExp(/(.)(.)\2\1/, {
n: 2
}));
@@ -1 +1 @@
/^([\0-\t\x0B\f\x0E-\u2027\u202A-\uFFFF])\1$/.test("aa");
/^(.)\1$/.test("aa");

0 comments on commit fbf09b8

Please sign in to comment.