@@ -19,6 +19,7 @@ programs. Some of them are:
19
19
- [ ` require('buffer').transcode() ` ] [ ]
20
20
- More accurate [ REPL] [ ] line editing
21
21
- [ ` require('util').TextDecoder ` ] [ ]
22
+ - [ RegExp Unicode Property Escapes] [ ]
22
23
23
24
Node.js (and its underlying V8 engine) uses [ ICU] [ ] to implement these features
24
25
in native C/C++ code. However, some of them require a very large ICU data file
@@ -55,6 +56,7 @@ option:
55
56
| [ ` require('buffer').transcode() ` ] [ ] | none (function does not exist) | full | full | full |
56
57
| [ REPL] [ ] | partial (inaccurate line editing) | full | full | full |
57
58
| [ ` require('util').TextDecoder ` ] [ ] | partial (basic encodings support) | partial/full (depends on OS) | partial (Unicode-only) | full |
59
+ | [ RegExp Unicode Property Escapes] [ ] | none (invalid RegExp error) | full | full | full |
58
60
59
61
* Note* : The "(not locale-aware)" designation denotes that the function carries
60
62
out its operation just like the non-` Locale ` version of the function, if one
@@ -207,6 +209,7 @@ to be helpful:
207
209
[ ECMA-402 ] : https://tc39.github.io/ecma402/
208
210
[ ICU ] : http://icu-project.org/
209
211
[ REPL ] : repl.html#repl_repl
212
+ [ RegExp Unicode Property Escapes ] : https://github.com/tc39/proposal-regexp-unicode-property-escapes
210
213
[ Test262 ] : https://github.com/tc39/test262/tree/master/test/intl402
211
214
[ WHATWG URL parser ] : url.html#url_the_whatwg_url_api
212
215
[ btest402 ] : https://github.com/srl295/btest402
0 commit comments