mirror of
https://github.com/electron/electron.git
synced 2026-02-17 02:21:37 -05:00
22 lines
583 B
C++
22 lines
583 B
C++
// Copyright (c) 2020 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/common/gin_converters/time_converter.h"
|
|
|
|
#include "base/time/time.h"
|
|
|
|
namespace gin {
|
|
|
|
v8::Local<v8::Value> Converter<base::Time>::ToV8(v8::Isolate* isolate,
|
|
const base::Time& val) {
|
|
v8::Local<v8::Value> date;
|
|
if (v8::Date::New(isolate->GetCurrentContext(), val.ToJsTime())
|
|
.ToLocal(&date))
|
|
return date;
|
|
else
|
|
return v8::Null(isolate);
|
|
}
|
|
|
|
} // namespace gin
|