@@ -19,6 +19,7 @@ programs. Some of them are:
1919- [ ` require('buffer').transcode() ` ] [ ]
2020- More accurate [ REPL] [ ] line editing
2121- [ ` require('util').TextDecoder ` ] [ ]
22+ - [ RegExp Unicode Property Escapes] [ ]
2223
2324Node.js (and its underlying V8 engine) uses [ ICU] [ ] to implement these features
2425in native C/C++ code. However, some of them require a very large ICU data file
@@ -55,6 +56,7 @@ option:
5556| [ ` require('buffer').transcode() ` ] [ ] | none (function does not exist) | full | full | full |
5657| [ REPL] [ ] | partial (inaccurate line editing) | full | full | full |
5758| [ ` 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 |
5860
5961* Note* : The "(not locale-aware)" designation denotes that the function carries
6062out its operation just like the non-` Locale ` version of the function, if one
@@ -207,6 +209,7 @@ to be helpful:
207209[ ECMA-402 ] : https://tc39.github.io/ecma402/
208210[ ICU ] : http://icu-project.org/
209211[ REPL ] : repl.html#repl_repl
212+ [ RegExp Unicode Property Escapes ] : https://github.com/tc39/proposal-regexp-unicode-property-escapes
210213[ Test262 ] : https://github.com/tc39/test262/tree/master/test/intl402
211214[ WHATWG URL parser ] : url.html#url_the_whatwg_url_api
212215[ btest402 ] : https://github.com/srl295/btest402
0 commit comments