mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
LibJS: Extend supported date string formats
This commit is contained in:
@@ -187,6 +187,9 @@ static double parse_date_string(VM& vm, ByteString const& date_string)
|
||||
"%Y-%m-%e"sv, // "2024-1-15"
|
||||
"%Y-%m-%e%t%T%tGMT%z"sv, // "2024-07-05 00:00:00 GMT-0800"
|
||||
"%d%t%B%t%Y"sv, // "01 February 2013"
|
||||
"%d%t%B%t%Y%t%R"sv, // "01 February 2013 08:00"
|
||||
"%d%t%b%t%Y"sv, // "01 Jan 2000"
|
||||
"%d%t%b%t%Y%t%R"sv, // "01 Jan 2000 08:00"
|
||||
};
|
||||
|
||||
for (auto const& format : extra_formats) {
|
||||
|
||||
@@ -27,6 +27,10 @@ test("basic functionality", () => {
|
||||
expect(Date.parse("Sun Jan 21 2024 21:11:31 GMT 0100 (Central European Standard Time)")).toBe(
|
||||
1705867891000
|
||||
);
|
||||
expect(Date.parse("05 Jul 2024 00:00")).toBe(1720155600000);
|
||||
expect(Date.parse("05 Jul 2024")).toBe(1720155600000);
|
||||
expect(Date.parse("05 July 2024")).toBe(1720155600000);
|
||||
expect(Date.parse("05 July 2024 00:00")).toBe(1720155600000);
|
||||
expect(Date.parse("2024-07-05 00:00:00 GMT-0200")).toBe(1720144800000);
|
||||
expect(Date.parse("2024-01-15 00:00:01")).toBe(1705298401000);
|
||||
expect(Date.parse("Tue Nov 07 2023 10:05:55 UTC")).toBe(1699351555000);
|
||||
|
||||
Reference in New Issue
Block a user