| 61 | } |
| 62 | |
| 63 | NAN_MODULE_INIT(Init) { |
| 64 | Set(target |
| 65 | , New<v8::String>("thread_local_storage").ToLocalChecked() |
| 66 | , GetFunction(New<v8::FunctionTemplate>(thread_local_storage)) |
| 67 | .ToLocalChecked() |
| 68 | ); |
| 69 | } |
| 70 | |
| 71 | NODE_MODULE(threadlocal, Init) |
nothing calls this directly
no test coverage detected