Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-06-12 18:25:53 +0300
committerJames M Snell <jasnell@gmail.com>2017-07-25 00:04:13 +0300
commited21cb1774d3e146f84a94400db0008a940656c3 (patch)
tree666b947e272b665045994da4476d7aa01bbe418f /src/node_i18n.h
parent7f5a745e35bec2bde067c2922f6a9146beed99e6 (diff)
util: implement WHATWG Encoding Standard API
Provide an (initially experimental) implementation of the WHATWG Encoding Standard API (`TextDecoder` and `TextEncoder`). The is the same API implemented on the browser side. By default, with small-icu, only the UTF-8, UTF-16le and UTF-16be decoders are supported. With full-icu enabled, every encoding other than iso-8859-16 is supported. This provides a basic test, but does not include the full web platform tests. Note: many of the web platform tests for this would fail by default because we ship with small-icu by default. A process warning will be emitted on first use to indicate that the API is still experimental. No runtime flag is required to use the feature. Refs: https://encoding.spec.whatwg.org/ PR-URL: https://github.com/nodejs/node/pull/13644 Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/node_i18n.h')
-rw-r--r--src/node_i18n.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_i18n.h b/src/node_i18n.h
index adf9feb414d..f7801ce6668 100644
--- a/src/node_i18n.h
+++ b/src/node_i18n.h
@@ -25,6 +25,7 @@
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
#include "node.h"
+#include <unicode/ucnv.h>
#include <string>
#if defined(NODE_HAVE_I18N_SUPPORT)