mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-19 16:51:52 +00:00
LibJS: Make string to number coercion work for doubles
This commit is contained in:
parent
7b8765c311
commit
0c14ee035c
Notes:
sideshowbarker
2024-07-19 06:41:14 +09:00
Author: https://github.com/linusg
Commit: 0c14ee035c
Pull-request: https://github.com/SerenityOS/serenity/pull/2208
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