| 1549 | template <typename T> |
| 1550 | String String::From(napi_env env, const T& value) { |
| 1551 | struct Dummy {}; |
| 1552 | using Helper = typename std::conditional< |
| 1553 | std::is_convertible<T, const char*>::value, |
| 1554 | details::vf_utf8_charp, |
nothing calls this directly
no outgoing calls
no test coverage detected