mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-20 01:11:07 +00:00
LibJS: Implement Date.prototype.to{Date,Time}String()
This commit is contained in:
parent
dc9b1226ac
commit
3fcea71538
Notes:
sideshowbarker
2024-07-19 08:02:39 +09:00
Author: https://github.com/linusg
Commit: 3fcea71538
Pull-request: https://github.com/SerenityOS/serenity/pull/1544
Reviewed-by: https://github.com/awesomekling ✅
3 changed files with 31 additions and 2 deletions
|
@ -36,6 +36,11 @@ public:
|
|||
|
||||
Core::DateTime& datetime() { return m_datetime; }
|
||||
u16 milliseconds() { return m_milliseconds; }
|
||||
|
||||
String date_string() { return m_datetime.to_string("%a %b %d %Y"); }
|
||||
// FIXME: Deal with timezones once SerenityOS has a working tzset(3)
|
||||
String time_string() { return m_datetime.to_string("%T GMT+0000 (UTC)"); }
|
||||
|
||||
virtual Value value_of() const override
|
||||
{
|
||||
return Value(static_cast<double>(m_datetime.timestamp() * 1000 + m_milliseconds));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue