| 49 | } |
| 50 | |
| 51 | NAN_MODULE_INIT(Init) { |
| 52 | Set(target |
| 53 | , New<v8::String>("hustle").ToLocalChecked() |
| 54 | , GetFunction(New<v8::FunctionTemplate>(Hustle)).ToLocalChecked() |
| 55 | ); |
| 56 | Set(target |
| 57 | , New<v8::String>("weakExternal").ToLocalChecked() |
| 58 | , GetFunction(New<v8::FunctionTemplate>(WeakExternal)).ToLocalChecked() |
| 59 | ); |
| 60 | } |
| 61 | |
| 62 | NODE_MODULE(weak, Init) |
nothing calls this directly
no test coverage detected