6 lines
102 B
C
6 lines
102 B
C
#include <node_api.h>
|
|
napi_value passthrough(napi_env env, napi_value v) {
|
|
(void)env;
|
|
return v;
|
|
}
|