summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/MathObject.cpp
AgeCommit message (Expand)Author
2021-10-20LibJS: Add ThrowCompletionOr versions of the JS native function macrosIdan Horowitz
2021-10-18LibJS: Convert to_u32() to ThrowCompletionOrIdan Horowitz
2021-10-18LibJS: Convert to_number() to ThrowCompletionOrIdan Horowitz
2021-08-30LibJS: Always use AK::get_random() in Math.random()Andreas Kling
2021-08-08LibJS+Spreadsheet: Use js_string(VM&, ...) overload moreLinus Groh
2021-08-08LibJS: Fix UB in `Math.clz32`Daniel Bertalan
2021-07-06LibJS: Add define_direct_property and remove the define_property helperIdan Horowitz
2021-06-28LibJS: Handle values close to -0.5 correctly in Math.round(x)Idan Horowitz
2021-06-25LibJS: Change PropertyName(Symbol*) => PropertyName(Symbol&)Linus Groh
2021-06-16LibJS: Rename Value::{is_integer => is_integral_number}Idan Horowitz
2021-06-13LibJS: Avoid lots of string-to-int during global object constructionAndreas Kling
2021-06-13LibJS: Add ECMA-262 section/title/URL comments almost everywhereLinus Groh
2021-06-05LibJS: Correctly handle NaN and negative infinity in Math.atan2Idan Horowitz
2021-06-05LibJS: Rewrite Math.hypot to handle exceptions, NaNs, Infinity properlyIdan Horowitz
2021-06-05LibJS: Handle NaN/Infinity/Zero edge cases in Math.pow()Idan Horowitz
2021-06-05LibJS: Rewrite Math.{max, min} to handle exceptions and NaNs properlyIdan Horowitz
2021-06-05LibJS: Handle negative zero and negative infinity in Math.abs()Idan Horowitz
2021-06-05LibJS: Add Math.imul()Idan Horowitz
2021-05-14Userland: Replace arc4random() with get_random<u32>()Jean-Baptiste Boric
2021-04-23LibJS: Correctly handle mixing +0 and -0 in Math.{min,max}()Linus 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-02-10LibJS: Remove a whole bunch of unnecessary #includesAndreas Kling
2021-02-05LibJS: Improve correctness of rounding and bitwise operationsAndreas Kling
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling