LibJS: Return empty value on exception in Date.parse(), not NaN

This is discarded anyway, so let's not confuse ourselves by returning a
NaN number value that's not going to be used.
This commit is contained in:
Linus Groh 2021-02-13 12:37:02 +01:00 committed by Andreas Kling
parent db340ae7aa
commit 2ed7f75e95

View file

@ -229,7 +229,7 @@ JS_DEFINE_NATIVE_FUNCTION(DateConstructor::parse)
auto iso_8601 = vm.argument(0).to_string(global_object);
if (vm.exception())
return js_nan();
return {};
return parse_simplified_iso8601(iso_8601);
}