Brian Ng 6182001a4c
Bump regexpu-core (#12077)
* Bump regexpu-core

* dedupe
2020-09-18 15:36:37 -04:00

8 lines
146 B
JavaScript

/[^K]/u.test(string);
/[^k]/u.test(string);
/[^\u212a]/u.test(string);
/[^K]/iu.test(string);
/[^k]/iu.test(string);
/[^\u212a]/iu.test(string);