mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibJS: Parse dates like "2025-01-13 00:00:00.000"
This is used on figma.com.
This commit is contained in:
parent
915c36c366
commit
3ab4efb7ef
Notes:
github-actions[bot]
2025-01-21 20:37:06 +00:00
Author: https://github.com/Lubrsi
Commit: 3ab4efb7ef
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3239
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/kalenikaliaksandr
2 changed files with 2 additions and 0 deletions
|
@ -45,6 +45,7 @@ test("basic functionality", () => {
|
|||
expect(Date.parse("Wed Nov 20 2024")).toBe(1732082400000);
|
||||
expect(Date.parse("2025-01-02 14:00:00+0000")).toBe(1735826400000);
|
||||
expect(Date.parse("Wednesday, Jan 15, 2025")).toBe(1736920800000);
|
||||
expect(Date.parse("2025-01-13 00:00:00.000")).toBe(1736748000000);
|
||||
|
||||
// FIXME: Create a scoped time zone helper when bytecode supports the `using` declaration.
|
||||
setTimeZone(originalTimeZone);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue