1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:38:11 +00:00

LibJS: Add Number.parseFloat()

This commit is contained in:
Linus Groh 2020-05-17 15:12:50 +01:00 committed by Andreas Kling
parent 6f6b089aa0
commit 73eef31f49
4 changed files with 14 additions and 1 deletions

View file

@ -0,0 +1,11 @@
load("test-common.js");
try {
// Ensuring it's the same function as the global
// parseFloat() is enough as that already has tests :^)
assert(Number.parseFloat === parseFloat);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}