summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/DateConstructor.cpp
AgeCommit message (Expand)Author
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
2021-06-28LibJS: Accept FlyStrings in the NativeFunction constructorsIdan Horowitz
2021-06-27LibJS: Rename Function => FunctionObjectAndreas Kling
2021-06-20LibJS: Use OrdinaryCreateFromConstructor() in a bunch of constructorsLinus Groh
2021-06-13LibJS: Use the new is_ascii_foo() helpers from AKAndreas Kling
2021-06-13Userland: Allow building SerenityOS with -funsigned-charGunnar Beutner
2021-06-13LibJS: Don't repeat attributes in {Date,Symbol}ConstructorLinus Groh
2021-06-13LibJS: Add ECMA-262 section/title/URL comments almost everywhereLinus Groh
2021-06-06LibJS: Check dates are below the `time_clip` thresholdIdan Horowitz
2021-06-06LibJS: Store Date milliseconds as signed to support negative offsetsIdan Horowitz
2021-06-06LibJS: Ignore arguments in Date's constructor when called as a functionIdan Horowitz
2021-06-06LibJS: Create 1970-01-01 00:00:00 local time Date for invalid ctor callLinus Groh
2021-04-22Everywhere: Use linusg@serenityos.org for my copyright headersLinus Groh
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
2021-03-22LibJS Date: Added "Invalid Date".Petróczi Zoltán
2021-02-23Everywhere: Rename ASSERT => VERIFYAndreas Kling
2021-02-13LibJS: Return empty value on exception in Date.parse(), not NaNLinus Groh
2021-02-13LibJS: Add missing exception check in Date() constructorLinus Groh
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling