summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Date.cpp
AgeCommit message (Expand)Author
2023-05-24LibTimeZone+Userland: Change timezone functions to use UnixDateTimekleines Filmröllchen
2023-05-24AK: Rename Time to Durationkleines Filmröllchen
2023-04-13LibJS: Make intrinsics getters return NonnullGCPtrLinus Groh
2023-03-01LibJS: Make string_to_number() return double instead of Optional<Value>Linus Groh
2023-01-29LibJS+Everywhere: Propagate Cell::initialize errors from Heap::allocateTimothy Flynn
2023-01-29LibJS: Define Date constants such that translation units don't copy themTimothy Flynn
2023-01-27AK: Remove StringBuilder::build() in favor of to_deprecated_string()Linus Groh
2023-01-15LibCrypto+Everywhere: Rename *BigInteger::to_base to to_base_deprecatedTimothy Flynn
2023-01-02Revert "LibJS: Implement MakeDay without using AK::years_to_days_since…"Ben Wiederhake
2022-12-15LibJS: Convert Heap::allocate{,_without_realm}() to NonnullGCPtrLinus Groh
2022-12-14LibJS: Remove Object(Object& prototype) footgunAndreas Kling
2022-12-14LibJS: Convert Date::create() to NonnullGCPtrLinus Groh
2022-12-06AK+Everywhere: Rename String to DeprecatedStringLinus Groh
2022-11-06LibJS: Remove the now-unused LocalTZA AOTimothy Flynn
2022-11-06LibJS: Remove infallibility marker from DefaultTimeZone invocationTimothy Flynn
2022-10-15LibJS: Subtract time zone offsets when converting from local time to UTCTimothy Flynn
2022-10-15LibJS: Consolidate sources of system time zone to one location in DateTimothy Flynn
2022-08-27LibJS: Move intrinsics to the realmLinus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in Heap::allocate<T>()Linus Groh
2022-08-23LibJS+LibWeb: Replace GlobalObject with Realm in create() functionsLinus Groh
2022-05-06LibJS: Convert remaining Date AOs using JS::Value as in/output to doubleLinus Groh
2022-05-06LibJS: Remove unused LibCore/DateTime.h header from Date.cppLinus Groh
2022-05-06LibJS: Move Hours/Minutes/Seconds/ms constants out of the Date classLinus Groh
2022-05-03LibJS: Fix type confusion in msFromTimeLinus Groh
2022-03-16Libraries: Use default constructors/destructors in LibJSLenny Maiorani
2022-01-31Everywhere: Update copyrights with my new serenityos.org e-mail :^)Timothy Flynn
2022-01-19LibJS+LibTimeZone+LibUnicode: Indicate whether a time zone is in DSTTimothy Flynn
2022-01-16LibJS: Protect [TimeValue]FromTime from non-finite timesTimothy Flynn
2022-01-16LibJS: Protect DayWithinYear against non-finite timesTimothy Flynn
2022-01-16LibJS: Protect YearFromTime against non-finite timesTimothy Flynn
2022-01-16LibJS: Ensure final computation in DayFromYear is performed on a doubleTimothy Flynn
2022-01-15LibJS: Implement MakeDay without using AK::years_to_days_since_epochTimothy Flynn
2022-01-15LibJS: Move time conversion constants to the Date headerTimothy Flynn
2022-01-15LibJS: Remove Core::DateTime logic from the Date object :^)Timothy Flynn
2022-01-15LibJS: Re-implement the Date constructor / prototype for spec complianceTimothy Flynn
2022-01-15LibJS: Protect LocalTZA against non-finite timesTimothy Flynn
2022-01-15LibJS: Do not negate offset in LocalTZA for isUTC=falseTimothy Flynn
2022-01-15LibJS: Implement the LocalTime, UTC, and TimeWithinDay AOsTimothy Flynn
2022-01-14LibJS: Implement the localTZA AO for isUTC=falseTimothy Flynn
2022-01-12LibJS: Partially implement the LocalTZA AOTimothy Flynn
2022-01-05LibJS: Use AK::Time to implement the MakeDay AOTimothy Flynn
2021-12-22LibJS: Support modulo(x, y) with different typesLinus Groh
2021-12-08LibJS: Implement Date's Week Day AOTimothy Flynn
2021-12-08LibJS: Implement Date's TimeClip AOTimothy Flynn
2021-11-16LibJS: Fix incorrect use of "modulo" in {hour,min,sec,ms}_from_time()Linus Groh
2021-11-05LibJS: Adjust approximated result in year_from_time() if necessaryLinus Groh
2021-11-05LibJS: Account for leap days in year_from_time()Linus Groh
2021-10-30LibJS: Ensure make_day()'s temporary Core::DateTime is treated as UTCLinus Groh
2021-10-30LibJS: Fix off-by-one in make_day()'s temporary Core::DateTimeLinus Groh
2021-10-18LibJS: Convert to_integer_or_infinity() to ThrowCompletionOrLinus Groh