src: simplify uptime and ppid return values
This commit removes extraneous wrapping of return values in Uptime() and GetParentProcessId(). PR-URL: https://github.com/nodejs/node/pull/24562 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jon Moss <me@jonathanmoss.me>
This commit is contained in:
parent
567b9f86cc
commit
11c17e4bc9
@ -54,7 +54,6 @@ using v8::Integer;
|
||||
using v8::Isolate;
|
||||
using v8::Local;
|
||||
using v8::Name;
|
||||
using v8::Number;
|
||||
using v8::PropertyCallbackInfo;
|
||||
using v8::String;
|
||||
using v8::Uint32;
|
||||
@ -259,7 +258,7 @@ void Uptime(const FunctionCallbackInfo<Value>& args) {
|
||||
uv_update_time(env->event_loop());
|
||||
uptime = uv_now(env->event_loop()) - prog_start_time;
|
||||
|
||||
args.GetReturnValue().Set(Number::New(env->isolate(), uptime / 1000));
|
||||
args.GetReturnValue().Set(uptime / 1000);
|
||||
}
|
||||
|
||||
|
||||
@ -790,7 +789,7 @@ void EnvEnumerator(const PropertyCallbackInfo<Array>& info) {
|
||||
|
||||
void GetParentProcessId(Local<Name> property,
|
||||
const PropertyCallbackInfo<Value>& info) {
|
||||
info.GetReturnValue().Set(Integer::New(info.GetIsolate(), uv_os_getppid()));
|
||||
info.GetReturnValue().Set(uv_os_getppid());
|
||||
}
|
||||
|
||||
void GetActiveRequests(const FunctionCallbackInfo<Value>& args) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user