Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement symbol.prototype[ @@ToStringTag] #1292

Merged
merged 13 commits into from
May 29, 2021
Next Next commit
Fixed hypot length bug
  • Loading branch information
moadmmh committed May 28, 2021
commit 030ea66d4b0f13277de77d03c07c32e4aa4d52cb
2 changes: 1 addition & 1 deletion boa/src/builtins/math/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl BuiltIn for Math {
.function(Self::expm1, "expm1", 1)
.function(Self::floor, "floor", 1)
.function(Self::fround, "fround", 1)
.function(Self::hypot, "hypot", 1)
.function(Self::hypot, "hypot", 2)
.function(Self::imul, "imul", 1)
.function(Self::log, "log", 1)
.function(Self::log1p, "log1p", 1)
Expand Down