1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-20 13:35:07 +00:00

LibJS: Make string to number coercion work for doubles

This commit is contained in:
Linus Groh 2020-05-13 00:04:52 +01:00 committed by Andreas Kling
parent 7b8765c311
commit 0c14ee035c
2 changed files with 7 additions and 10 deletions

View file

@ -27,9 +27,8 @@ try {
assert(-42 === -42);
assert(+1.23 === 1.23);
assert(-1.23 === -1.23);
// FIXME: returns NaN
// assert(+"1.23" === 1.23)
// assert(-"1.23" === -1.23)
assert(+"1.23" === 1.23)
assert(-"1.23" === -1.23)
assert(+"Infinity" === Infinity);
assert(+"+Infinity" === Infinity);
assert(+"-Infinity" === -Infinity);