| 36 | } |
| 37 | |
| 38 | Symbol FetchSymbolFromGlobalRegistryWithCppKey(const Napi::CallbackInfo& info) { |
| 39 | String cppStringKey = info[0].As<String>(); |
| 40 | return MaybeUnwrap(Napi::Symbol::For(info.Env(), cppStringKey.Utf8Value())); |
| 41 | } |
| 42 | |
| 43 | Symbol FetchSymbolFromGlobalRegistryWithStringViewKey( |
| 44 | const Napi::CallbackInfo& info) { |
nothing calls this directly
no test coverage detected