1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 01:47:36 +00:00

LibJS: Trim non-ASCII whitespace as well in StringToNumber

This regressed in f4b3bb5.
This commit is contained in:
Linus Groh 2022-08-30 10:20:45 +01:00
parent f4b3bb519f
commit c88c33dc22

View file

@ -527,7 +527,7 @@ static Optional<NumberParseResult> parse_number_text(StringView text)
static Optional<Value> string_to_number(StringView string)
{
// 1. Let text be StringToCodePoints(str).
String text = string.trim_whitespace();
String text = Utf8View(string).trim(whitespace_characters, AK::TrimMode::Both).as_string();
// 2. Let literal be ParseText(text, StringNumericLiteral).
if (text.is_empty())