mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-28 21:26:22 +00:00
LibJS: Add the Temporal.now namespace object
This will be home to various functions: - Temporal.now.timeZone() - Temporal.now.instant() - Temporal.now.plainDateTime() - Temporal.now.plainDateTimeISO() - Temporal.now.zonedDateTime() - Temporal.now.zonedDateTimeISO() - Temporal.now.plainDate() - Temporal.now.plainDateISO() - Temporal.now.plainTimeISO()
This commit is contained in:
parent
8269921212
commit
7da1fcb2ef
Notes:
sideshowbarker
2024-07-18 10:16:00 +09:00
Author: https://github.com/linusg
Commit: 7da1fcb2ef
Pull-request: https://github.com/SerenityOS/serenity/pull/8514
Reviewed-by: https://github.com/awesomekling ✅
4 changed files with 52 additions and 0 deletions
23
Userland/Libraries/LibJS/Runtime/Temporal/Now.cpp
Normal file
23
Userland/Libraries/LibJS/Runtime/Temporal/Now.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <LibJS/Runtime/GlobalObject.h>
|
||||
#include <LibJS/Runtime/Temporal/Now.h>
|
||||
|
||||
namespace JS::Temporal {
|
||||
|
||||
// 2 The Temporal.now Object, https://tc39.es/proposal-temporal/#sec-temporal-now-object
|
||||
Now::Now(GlobalObject& global_object)
|
||||
: Object(*global_object.object_prototype())
|
||||
{
|
||||
}
|
||||
|
||||
void Now::initialize(GlobalObject& global_object)
|
||||
{
|
||||
Object::initialize(global_object);
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue