Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 1x 1x 1x 1x 1x | /*! * UnicodeJS character classes * * Support for unicode equivalents of JS regex character classes * * @copyright 2013–2018 UnicodeJS team and others; see AUTHORS.txt * @license The MIT License (MIT); see LICENSE.txt */ ( function () { /** * @namespace unicodeJS.characterclass */ var basicLatinDigitRange = [ 0x30, 0x39 ], joinControlRange = [ 0x200C, 0x200D ], characterclass = unicodeJS.characterclass = {}; /** * @memberof unicodeJS.characterclass * @property {Object} */ characterclass.patterns = { // \w is defined in http://unicode.org/reports/tr18/ word: unicodeJS.charRangeArrayRegexp( [].concat( unicodeJS.derivedcoreproperties.Alphabetic, unicodeJS.derivedgeneralcategories.M, [ basicLatinDigitRange ], unicodeJS.derivedgeneralcategories.Pc, [ joinControlRange ] ) ) }; }() ); |