Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5b8cac8

Browse files
danbevcodebytere
authored andcommittedJul 9, 2020
src: remove unnecessary ToLocalChecked call
PR-URL: #33683 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Juan José Arboleda <soyjuanarbol@gmail.com>
1 parent 35cee03 commit 5b8cac8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/node_native_module_env.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,9 @@ void NativeModuleEnv::CompileFunction(const FunctionCallbackInfo<Value>& args) {
127127
NativeModuleLoader::GetInstance()->CompileAsModule(
128128
env->context(), id, &result);
129129
RecordResult(id, result, env);
130-
if (!maybe.IsEmpty()) {
131-
args.GetReturnValue().Set(maybe.ToLocalChecked());
130+
Local<Function> fn;
131+
if (maybe.ToLocal(&fn)) {
132+
args.GetReturnValue().Set(fn);
132133
}
133134
}
134135

0 commit comments

Comments
 (0)
Please sign in to comment.