void Callback(const v8::FunctionCallbackInfo<v8::Value> &args) {}
v8::MaybeLocal<v8::Object> GetValue(v8::Isolate *isolate, const v8::Local<v8::Context> &context) { v8::HandleScope handle_scope(isolate); auto func = v8::Function::New(isolate, Callback); v8::MaybeLocal<v8::Object> instance = func->NewInstance(context); // Do I need to Escape() this "instance" ? If so, how? return instance; // Is this alright?}