summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp
AgeCommit message (Expand)Author
2023-05-24Userland: Remove remaining users of Duration::now_realtime()kleines Filmröllchen
2023-05-24AK: Rename Time to Durationkleines Filmröllchen
2023-05-22LibJS: Add "Month dd, yy hh:mm:ss" Date formatLuke Wilde
2023-04-13LibJS: Make intrinsics getters return NonnullGCPtrLinus Groh
2023-03-23LibJS: Support the yy{/,-}mm{/,-}dd hh:mm format for DateLuke Wilde
2023-01-29LibJS+Everywhere: Allow Cell::initialize overrides to throw OOM errorsTimothy Flynn
2023-01-15LibJS+Everywhere: Rename Value::to_string to to_deprecated_stringTimothy Flynn
2023-01-08LibJS+Everywhere: Make PrimitiveString and Utf16String fallibleTimothy Flynn
2022-12-15LibJS: Convert Object::construct() to NonnullGCPtrLinus Groh
2022-12-15LibJS: Convert ordinary_create_from_constructor() to NonnullGCPtrLinus Groh
2022-12-13LibJS: Support MM/DD/YYYY HH:MM <timezone-offset> format for DateLuke Wilde
2022-12-07LibJS: Replace standalone js_string() with PrimitiveString::create()Linus Groh
2022-12-06Everywhere: Rename to_{string => deprecated_string}() where applicableLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-09-17LibJS: Parse date strings like "9/17/2022"davidot
2022-09-15LibJS: Do not invoke Cell::vm in constructors before Cell is constructedTimothy Flynn
2022-08-27LibJS: Move intrinsics to the realmLinus Groh
2022-08-23LibJS: Pass Realm to define_native_{accessor,function}()Linus Groh
2022-08-23LibJS: Remove GlobalObject parameter from native functionsLinus Groh
2022-08-23LibJS: Replace GlobalObject with VM in common AOs [Part 18/19]Linus Groh
2022-08-23LibJS: Replace GlobalObject with VM in Date AOs [Part 14/19]Linus Groh
2022-08-23LibJS: Replace GlobalObject with VM in Value AOs [Part 4/19]Linus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in initialize() functionsLinus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in object constructorsLinus Groh
2022-07-12Everywhere: Add sv suffix to strings relying on StringView(char const*)sin-ack
2022-05-06LibJS: Convert remaining Date AOs using JS::Value as in/output to doubleLinus Groh
2022-04-30LibJS: Reject -00000 as extended year in Date parsingIdan Horowitz
2022-04-01Everywhere: Run clang-formatIdan Horowitz
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-03-09LibJS: Be more lenient when parsing milliseconds for Datedavidot
2022-01-31Everywhere: Update copyrights with my new serenityos.org e-mail :^)Timothy Flynn
2022-01-15LibJS: Re-implement the Date constructor / prototype for spec complianceTimothy Flynn
2022-01-15LibJS: Do not negate offset in LocalTZA for isUTC=falseTimothy Flynn
2022-01-14LibJS: Clip parsed IS0 8601 strings to +/- 8.64e15Timothy Flynn
2022-01-14LibJS: Implement Date.parse using AK::Time and LibTimeZoneTimothy Flynn
2022-01-05LibJS: Implement Date.UTC according to the specTimothy Flynn
2022-01-05LibJS: Set the length of Date.UTC to 7Timothy Flynn
2021-10-23LibJS: Convert DateConstructor functions to ThrowCompletionOrIdan Horowitz
2021-10-21LibJS: Convert NativeFunction::{call,construct}() to ThrowCompletionOrLinus Groh
2021-10-20LibJS: Rename define_native_function => define_old_native_functionIdan Horowitz
2021-10-20LibJS: Add ThrowCompletionOr versions of the JS native function macrosIdan Horowitz
2021-10-18LibJS: Convert to_i32() to ThrowCompletionOrIdan Horowitz
2021-10-18LibJS: Convert to_number() to ThrowCompletionOrIdan Horowitz
2021-10-13LibJS: Convert to_string() to ThrowCompletionOrLinus Groh
2021-09-26LibJS: Parse date strings like "Wed Apr 17 23:08:53 +0000 2019"Andreas Kling
2021-09-16LibJS: Convert ordinary_create_from_constructor<T> to ThrowCompletionOrIdan Horowitz
2021-07-10LibJS: Make parse_simplified_iso8601() use Optional<int> instead of -1Linus Groh
2021-07-10LibJS: Make Date.now() return a floor()'d milliseconds valueLinus Groh
2021-07-08LibJS: Reorder and add missing name & length properties to Built-insIdan Horowitz
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz