| 92 | // value produced by our own code), because napi_unwrap does not check the |
| 93 | // object's type. |
| 94 | template <typename T> inline T* Unwrap(Napi::Value value) { |
| 95 | return T::Unwrap(value.As<Napi::Object>()); |
| 96 | } |
| 97 | |
| 98 | // Generates a random type tag when the addon is loaded. Type tags must not be |
| 99 | // hardcoded, because multiple copies (or even different versions) of the addon |
nothing calls this directly
no outgoing calls
no test coverage detected