| 62 | } |
| 63 | |
| 64 | NAN_MODULE_INIT(Init) { |
| 65 | Nan::Set(target |
| 66 | , Nan::New<v8::String>("stringify").ToLocalChecked() |
| 67 | , Nan::GetFunction(Nan::New<v8::FunctionTemplate>(Stringify)) |
| 68 | .ToLocalChecked() |
| 69 | ); |
| 70 | } |
| 71 | |
| 72 | NODE_MODULE(stringify, Init) |
nothing calls this directly
no test coverage detected