We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23cd568 commit d6484cdCopy full SHA for d6484cd
tools/scripts/property-regex.js
@@ -4,6 +4,10 @@ const {
4
unicodeVersion
5
} = require('./utils.js');
6
7
+// This intentially includes only the binary properties required by UTS 18 Level 1 RL1.2 for Unicode
8
+// regex support, minus `Assigned` which has special handling since it is the inverse of Unicode
9
+// category `Unassigned` (`Cn`). To include all binary properties, change this to:
10
+// `const properties = require(`${unicodeVersion}`).Binary_Property;`
11
const properties = [
12
'ASCII',
13
'Alphabetic',
0 commit comments