mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-02 05:46:20 +00:00
11 lines
189 B
JavaScript
11 lines
189 B
JavaScript
load("test-common.js");
|
|
|
|
try {
|
|
assert(isClose(Math.asinh(0), 0));
|
|
assert(isClose(Math.asinh(1), 0.881373));
|
|
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|