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