Skip to content

Commit

Permalink
Bump regexpu-core (#12077)
Browse files Browse the repository at this point in the history
* Bump regexpu-core

* dedupe
  • Loading branch information
existentialism committed Sep 18, 2020
1 parent 37a02df commit 6182001
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
Expand Up @@ -20,7 +20,7 @@
"dependencies": {
"@babel/helper-annotate-as-pure": "workspace:^7.10.4",
"@babel/helper-regex": "workspace:^7.10.4",
"regexpu-core": "^4.7.0"
"regexpu-core": "^4.7.1"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
Expand Down
@@ -0,0 +1,7 @@
/[^K]/u.test(string);
/[^k]/u.test(string);
/[^\u212a]/u.test(string);

/[^K]/iu.test(string);
/[^k]/iu.test(string);
/[^\u212a]/iu.test(string);
@@ -0,0 +1,6 @@
/(?:(?!K)[\s\S])/.test(string);
/(?:(?!k)[\s\S])/.test(string);
/(?:(?!\u212A)[\s\S])/.test(string);
/(?:(?![K\u212A])[\s\S])/i.test(string);
/(?:(?![k\u212A])[\s\S])/i.test(string);
/(?:(?![K\u212A])[\s\S])/i.test(string);
10 changes: 5 additions & 5 deletions yarn.lock
Expand Up @@ -421,7 +421,7 @@ __metadata:
"@babel/helper-annotate-as-pure": "workspace:^7.10.4"
"@babel/helper-plugin-test-runner": "workspace:^7.10.4"
"@babel/helper-regex": "workspace:^7.10.4"
regexpu-core: ^4.7.0
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
Expand Down Expand Up @@ -13817,17 +13817,17 @@ fsevents@~2.1.2:
languageName: node
linkType: hard

"regexpu-core@npm:^4.7.0":
version: 4.7.0
resolution: "regexpu-core@npm:4.7.0"
"regexpu-core@npm:^4.7.0, regexpu-core@npm:^4.7.1":
version: 4.7.1
resolution: "regexpu-core@npm:4.7.1"
dependencies:
regenerate: ^1.4.0
regenerate-unicode-properties: ^8.2.0
regjsgen: ^0.5.1
regjsparser: ^0.6.4
unicode-match-property-ecmascript: ^1.0.4
unicode-match-property-value-ecmascript: ^1.2.0
checksum: 8947f4c4ac23494cb842e6a0b82f29dd76737486d78f833c1ba2436a046a134435e442a615d988c6dc6b9cdaf611aafd3627ce8d2f62a8e580f094101916cad4
checksum: a4d25a11cb95841325289ab8d0d43182b74cf7fce537e60718bc8b901adb4141714f8108c5d333da302e707068f0ea7be09fd5f06ef26a2b1c27b4f29177b8ab
languageName: node
linkType: hard

Expand Down

0 comments on commit 6182001

Please sign in to comment.