| 34 | } |
| 35 | |
| 36 | NAN_MODULE_INIT(Init) { |
| 37 | Set(target |
| 38 | , New<v8::String>("a").ToLocalChecked() |
| 39 | , GetFunction(New<v8::FunctionTemplate>(DoSleep)).ToLocalChecked()); |
| 40 | } |
| 41 | |
| 42 | NODE_MODULE(asyncworker, Init) |
nothing calls this directly
no test coverage detected