tor-browser

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

character-class-intersection-character.js (838B)


      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  Extended character classes enabled by the RegExp `v` flag support
      8  properties of strings, string literals, and set operations
      9 info: |
     10  Generated by https://github.com/mathiasbynens/unicode-property-escapes-tests
     11  Unicode v17.0.0
     12 esid: sec-patterns
     13 features: [regexp-v-flag]
     14 includes: [regExpUtils.js]
     15 ---*/
     16 
     17 testExtendedCharacterClass({
     18  regExp: /^[[0-9]&&_]+$/v,
     19  expression: "[[0-9]&&_]",
     20  matchStrings: [],
     21  nonMatchStrings: [
     22    "0",
     23    "1",
     24    "2",
     25    "3",
     26    "4",
     27    "5",
     28    "6",
     29    "6\uFE0F\u20E3",
     30    "7",
     31    "8",
     32    "9",
     33    "9\uFE0F\u20E3",
     34    "C",
     35    "\u2603",
     36    "\u{1D306}",
     37    "\u{1F1E7}\u{1F1EA}"
     38  ],
     39 });
     40 
     41 reportCompare(0, 0);