Any.js (787B)
1 // Copyright 2025 Mathias Bynens. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 author: Mathias Bynens 6 description: > 7 Unicode property escapes for `Any` 8 info: | 9 Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests 10 Unicode v17.0.0 11 esid: sec-static-semantics-unicodematchproperty-p 12 features: [regexp-unicode-property-escapes] 13 includes: [regExpUtils.js] 14 ---*/ 15 16 const matchSymbols = buildString({ 17 loneCodePoints: [], 18 ranges: [ 19 [0x00DC00, 0x00DFFF], 20 [0x000000, 0x00DBFF], 21 [0x00E000, 0x10FFFF] 22 ] 23 }); 24 testPropertyEscapes( 25 /^\p{Any}+$/u, 26 matchSymbols, 27 "\\p{Any}" 28 ); 29 30 assert( 31 !/\P{Any}/u.test(""), 32 "`\\P{Any}` should match nothing (not even the empty string)" 33 ); 34 35 reportCompare(0, 0);