Skip to content

Commit d6484cd

Browse files
committed
Add comment about level 1 Unicode properties
1 parent 23cd568 commit d6484cd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/scripts/property-regex.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ const {
44
unicodeVersion
55
} = require('./utils.js');
66

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;`
711
const properties = [
812
'ASCII',
913
'Alphabetic',

0 commit comments

Comments
 (0)