| 10 | } |
| 11 | |
| 12 | Symbol CreateNewSymbolWithCppStrDesc(const Napi::CallbackInfo& info) { |
| 13 | String cppStrKey = info[0].As<String>(); |
| 14 | return Napi::Symbol::New(info.Env(), cppStrKey.Utf8Value()); |
| 15 | } |
| 16 | |
| 17 | Symbol CreateNewSymbolWithCStrDesc(const Napi::CallbackInfo& info) { |
| 18 | String cStrKey = info[0].As<String>(); |