| 25 | } |
| 26 | |
| 27 | NAN_MODULE_INIT(Init) { |
| 28 | Nan::Set(target |
| 29 | , Nan::New<v8::String>("parse").ToLocalChecked() |
| 30 | , Nan::GetFunction(Nan::New<v8::FunctionTemplate>(Parse)).ToLocalChecked() |
| 31 | ); |
| 32 | } |
| 33 | |
| 34 | NODE_MODULE(parse, Init) |
nothing calls this directly
no test coverage detected