| 12 | using namespace Nan; // NOLINT(build/namespaces) |
| 13 | |
| 14 | NAN_MODULE_INIT(Init) { |
| 15 | Set(target |
| 16 | , New<v8::String>("r").ToLocalChecked() |
| 17 | , GetFunction(New<v8::FunctionTemplate>(ReturnString)).ToLocalChecked() |
| 18 | ); |
| 19 | } |
| 20 | |
| 21 | NODE_MODULE(multifile, Init) |
nothing calls this directly
no test coverage detected