| 2071 | void* context, |
| 2072 | void* data); |
| 2073 | struct Deleter { |
| 2074 | // napi_threadsafe_function is managed by Node.js, leave it alone. |
| 2075 | void operator()(napi_threadsafe_function*) const {}; |
| 2076 | }; |
| 2077 | |
| 2078 | std::unique_ptr<napi_threadsafe_function, Deleter> _tsfn; |
| 2079 | Deleter _d; |
nothing calls this directly
no outgoing calls
no test coverage detected