summaryrefslogtreecommitdiff
path: root/doc/api/intl.md
diff options
context:
space:
mode:
authorVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-02-28 05:42:58 +0200
committerVse Mozhet Byt <vsemozhetbyt@gmail.com>2018-03-02 02:34:37 +0200
commitd3af120f7ae0210ad1b5cc751df10138ea4a4e43 (patch)
tree12499c772bc2d9af965f23052544a284c0be21b6 /doc/api/intl.md
parent148f402320a137e921907f24378a80745ef115de (diff)
downloadandroid-node-v8-d3af120f7ae0210ad1b5cc751df10138ea4a4e43.tar.gz
android-node-v8-d3af120f7ae0210ad1b5cc751df10138ea4a4e43.tar.bz2
android-node-v8-d3af120f7ae0210ad1b5cc751df10138ea4a4e43.zip
doc: add RegExp Unicode Property Escapes to intl
PR-URL: https://github.com/nodejs/node/pull/19052 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'doc/api/intl.md')
-rw-r--r--doc/api/intl.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/intl.md b/doc/api/intl.md
index 3072e974e8..60a108b473 100644
--- a/doc/api/intl.md
+++ b/doc/api/intl.md
@@ -19,6 +19,7 @@ programs. Some of them are:
- [`require('buffer').transcode()`][]
- More accurate [REPL][] line editing
- [`require('util').TextDecoder`][]
+- [RegExp Unicode Property Escapes][]
Node.js (and its underlying V8 engine) uses [ICU][] to implement these features
in native C/C++ code. However, some of them require a very large ICU data file
@@ -55,6 +56,7 @@ option:
| [`require('buffer').transcode()`][] | none (function does not exist) | full | full | full |
| [REPL][] | partial (inaccurate line editing) | full | full | full |
| [`require('util').TextDecoder`][] | partial (basic encodings support) | partial/full (depends on OS) | partial (Unicode-only) | full |
+| [RegExp Unicode Property Escapes][] | none (invalid RegExp error) | full | full | full |
The "(not locale-aware)" designation denotes that the function carries out its
operation just like the non-`Locale` version of the function, if one
@@ -207,6 +209,7 @@ to be helpful:
[ECMA-402]: https://tc39.github.io/ecma402/
[ICU]: http://icu-project.org/
[REPL]: repl.html#repl_repl
+[RegExp Unicode Property Escapes]: https://github.com/tc39/proposal-regexp-unicode-property-escapes
[Test262]: https://github.com/tc39/test262/tree/master/test/intl402
[WHATWG URL parser]: url.html#url_the_whatwg_url_api
[btest402]: https://github.com/srl295/btest402