1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2016 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
NAN_METHOD(ReturnUndefined) {
info.GetReturnValue().SetUndefined();
}
NAN_MODULE_INIT(Init) {
Set(target
, New<v8::String>("r").ToLocalChecked()
, New<v8::FunctionTemplate>(ReturnUndefined)->GetFunction()
);
}
NODE_MODULE(returnundefined, Init)
|