-
-
Save sagivo/9a63da630b9876b39539 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void Method(const FunctionCallbackInfo<Value>& args) { | |
v8::String::Utf8Value nameFromArgs(args[0]->ToString()); | |
std::string name = std::string(*nameFromArgs); | |
std::string response = "hello " + name; | |
args.GetReturnValue().Set(Nan::New(response).ToLocalChecked()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment