Timothy Flynn
2022-03-28 08:30:48 -04:00
committed by Linus Groh
parent 278241859b
commit 7c41e6058a
Notes: sideshowbarker 2024-07-17 16:29:42 +09:00
11 changed files with 37 additions and 37 deletions

View File

@@ -46,7 +46,7 @@ ThrowCompletionOr<Value> DateTimeFormatFunction::call()
// 3. If date is not provided or is undefined, then
if (date.is_undefined()) {
// a. Let x be Call(%Date.now%, undefined).
// a. Let x be ! Call(%Date.now%, undefined).
date = MUST(JS::call(global_object, global_object.date_constructor_now_function(), js_undefined()));
}
// 4. Else,