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:
parent
7b8765c311
commit
0c14ee035c
2 changed files with 7 additions and 10 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue