We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9687348 commit 189677fCopy full SHA for 189677f
src/node_url.cc
@@ -787,11 +787,13 @@ bool ToASCII(const std::string& input, std::string* output) {
787
#else
788
// Intentional non-ops if ICU is not present.
789
bool ToUnicode(const std::string& input, std::string* output) {
790
+ std::cerr << "Warning: Cannot convert to unicode when intl is disabled!\n";
791
*output = input;
792
return true;
793
}
794
795
bool ToASCII(const std::string& input, std::string* output) {
796
+ std::cerr << "Warning: Cannot convert to ASCII when intl is disabled!\n";
797
798
799
0 commit comments