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

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

7 lines
224 B
JavaScript

/(?:(?!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);