| 15 | } |
| 16 | |
| 17 | Symbol CreateNewSymbolWithCStrDesc(const Napi::CallbackInfo& info) { |
| 18 | String cStrKey = info[0].As<String>(); |
| 19 | return Napi::Symbol::New(info.Env(), cStrKey.Utf8Value().c_str()); |
| 20 | } |
| 21 | |
| 22 | Symbol CreateNewSymbolWithNapiString(const Napi::CallbackInfo& info) { |
| 23 | String strKey = info[0].As<String>(); |