Skip to content

Commit 1a55e9a

Browse files
committed
src: default --icu_case_mapping on as a v8 option
* toLocaleUpperCase() and toLocaleLowerCase() do not function properly without this flag. * basic test case. The test case would fail if `--no_icu_case_mapping` was set. Fixes: #9445 PR-URL: #9454 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 15b83b9 commit 1a55e9a

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/node.cc

+8
Original file line numberDiff line numberDiff line change
@@ -4191,6 +4191,14 @@ void Init(int* argc,
41914191
DispatchDebugMessagesAsyncCallback));
41924192
uv_unref(reinterpret_cast<uv_handle_t*>(&dispatch_debug_messages_async));
41934193

4194+
#if defined(NODE_HAVE_I18N_SUPPORT)
4195+
// Set the ICU casing flag early
4196+
// so the user can disable a flag --foo at run-time by passing
4197+
// --no_foo from the command line.
4198+
const char icu_case_mapping[] = "--icu_case_mapping";
4199+
V8::SetFlagsFromString(icu_case_mapping, sizeof(icu_case_mapping) - 1);
4200+
#endif
4201+
41944202
#if defined(NODE_V8_OPTIONS)
41954203
// Should come before the call to V8::SetFlagsFromCommandLine()
41964204
// so the user can disable a flag --foo at run-time by passing

test/parallel/test-intl.js

+5
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ if (!common.hasIntl) {
5050
return;
5151
}
5252

53+
// Check casing
54+
{
55+
assert.strictEqual('I'.toLocaleLowerCase('tr'), 'ı');
56+
}
57+
5358
// Check with toLocaleString
5459
{
5560
const localeString = dtf.format(date0);

0 commit comments

Comments
 (0)