Open
Description
Hello,
I fixed compilation using this:
--- a/node-stringprep.cc
+++ b/node-stringprep.cc
@@ -194,7 +194,7 @@
if (info.Length() >= 2 && info[0]->IsString() && info[1]->IsInt32())
{
String::Value str(info[0]->ToString());
- int32_t options = info[1]->ToInt32()->Value();
+ int32_t options = Nan::To<int32_t>(info[1]).FromJust();
UErrorCode error = U_ZERO_ERROR;
UIDNA *uidna = uidna_openUTS46(options, &error);
if (U_FAILURE(error))
@@ -252,7 +252,7 @@
if (info.Length() >= 2 && info[0]->IsString() && info[1]->IsInt32())
{
String::Value str(info[0]->ToString());
- int32_t options = info[1]->ToInt32()->Value();
+ int32_t options = Nan::To<int32_t>(info[1]).FromJust();
UErrorCode error = U_ZERO_ERROR;
UIDNA *uidna = uidna_openUTS46(options, &error);
if (U_FAILURE(error))
Cheers,
Xavier
Metadata
Metadata
Assignees
Labels
No labels