tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Emoji_Modifier.js (1094B)


      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 `Emoji_Modifier`
      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    [0x01F3FB, 0x01F3FF]
     20  ]
     21 });
     22 testPropertyEscapes(
     23  /^\p{Emoji_Modifier}+$/u,
     24  matchSymbols,
     25  "\\p{Emoji_Modifier}"
     26 );
     27 testPropertyEscapes(
     28  /^\p{EMod}+$/u,
     29  matchSymbols,
     30  "\\p{EMod}"
     31 );
     32 
     33 const nonMatchSymbols = buildString({
     34  loneCodePoints: [],
     35  ranges: [
     36    [0x00DC00, 0x00DFFF],
     37    [0x000000, 0x00DBFF],
     38    [0x00E000, 0x01F3FA],
     39    [0x01F400, 0x10FFFF]
     40  ]
     41 });
     42 testPropertyEscapes(
     43  /^\P{Emoji_Modifier}+$/u,
     44  nonMatchSymbols,
     45  "\\P{Emoji_Modifier}"
     46 );
     47 testPropertyEscapes(
     48  /^\P{EMod}+$/u,
     49  nonMatchSymbols,
     50  "\\P{EMod}"
     51 );
     52 
     53 reportCompare(0, 0);