| 15 | } |
| 16 | |
| 17 | NAN_MODULE_INIT(Init) { |
| 18 | Set(target |
| 19 | , New<v8::String>("r").ToLocalChecked() |
| 20 | , GetFunction(New<v8::FunctionTemplate>(ReturnEmptyString)).ToLocalChecked() |
| 21 | ); |
| 22 | } |
| 23 | |
| 24 | NODE_MODULE(returnemptystring, Init) |
| 25 |
nothing calls this directly
no test coverage detected