mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 23:17:19 +00:00

Converting the helper functions to be inlined and making the helper file header only. PR-URL: https://github.com/nodejs/node/pull/49515 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gabriel Schulhof <gabrielschulhof@gmail.com>
65 lines
1.8 KiB
C
65 lines
1.8 KiB
C
#include <js_native_api.h>
|
|
#include "../common.h"
|
|
#include "../entry_point.h"
|
|
|
|
static napi_value createDate(napi_env env, napi_callback_info info) {
|
|
size_t argc = 1;
|
|
napi_value args[1];
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL));
|
|
|
|
NODE_API_ASSERT(env, argc >= 1, "Wrong number of arguments");
|
|
|
|
napi_valuetype valuetype0;
|
|
NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype0));
|
|
|
|
NODE_API_ASSERT(env, valuetype0 == napi_number,
|
|
"Wrong type of arguments. Expects a number as first argument.");
|
|
|
|
double time;
|
|
NODE_API_CALL(env, napi_get_value_double(env, args[0], &time));
|
|
|
|
napi_value date;
|
|
NODE_API_CALL(env, napi_create_date(env, time, &date));
|
|
|
|
return date;
|
|
}
|
|
|
|
static napi_value isDate(napi_env env, napi_callback_info info) {
|
|
napi_value date, result;
|
|
size_t argc = 1;
|
|
bool is_date;
|
|
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL));
|
|
NODE_API_CALL(env, napi_is_date(env, date, &is_date));
|
|
NODE_API_CALL(env, napi_get_boolean(env, is_date, &result));
|
|
|
|
return result;
|
|
}
|
|
|
|
static napi_value getDateValue(napi_env env, napi_callback_info info) {
|
|
napi_value date, result;
|
|
size_t argc = 1;
|
|
double value;
|
|
|
|
NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, &date, NULL, NULL));
|
|
NODE_API_CALL(env, napi_get_date_value(env, date, &value));
|
|
NODE_API_CALL(env, napi_create_double(env, value, &result));
|
|
|
|
return result;
|
|
}
|
|
|
|
EXTERN_C_START
|
|
napi_value Init(napi_env env, napi_value exports) {
|
|
napi_property_descriptor descriptors[] = {
|
|
DECLARE_NODE_API_PROPERTY("createDate", createDate),
|
|
DECLARE_NODE_API_PROPERTY("isDate", isDate),
|
|
DECLARE_NODE_API_PROPERTY("getDateValue", getDateValue),
|
|
};
|
|
|
|
NODE_API_CALL(env, napi_define_properties(
|
|
env, exports, sizeof(descriptors) / sizeof(*descriptors), descriptors));
|
|
|
|
return exports;
|
|
}
|
|
EXTERN_C_END
|