| 48 | } |
| 49 | |
| 50 | static napi_value StringToNValue(napi_env env, const string &value) { |
| 51 | napi_value result; |
| 52 | napi_create_string_utf8(env, value.data(), value.size(), &result); |
| 53 | return result; |
| 54 | } |
| 55 | |
| 56 | static napi_value BoolToNValue(napi_env env, bool value) { |
| 57 | napi_value result; |
nothing calls this directly
no outgoing calls
no test coverage detected