mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 04:17:35 +00:00
LibJS: Fix one more instance of Number value / integer confusion
This is an editorial change in the Temporal spec.
See: 5b1b783
This commit is contained in:
parent
aac457755d
commit
cb33320814
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ JS_DEFINE_NATIVE_FUNCTION(TimeZonePrototype::get_offset_nanoseconds_for)
|
||||||
if (time_zone->offset_nanoseconds().has_value())
|
if (time_zone->offset_nanoseconds().has_value())
|
||||||
return Value(*time_zone->offset_nanoseconds());
|
return Value(*time_zone->offset_nanoseconds());
|
||||||
|
|
||||||
// 5. Return ! GetIANATimeZoneOffsetNanoseconds(instant.[[Nanoseconds]], timeZone.[[Identifier]]).
|
// 5. Return 𝔽(! GetIANATimeZoneOffsetNanoseconds(instant.[[Nanoseconds]], timeZone.[[Identifier]])).
|
||||||
return Value((double)get_iana_time_zone_offset_nanoseconds(instant->nanoseconds(), time_zone->identifier()));
|
return Value((double)get_iana_time_zone_offset_nanoseconds(instant->nanoseconds(), time_zone->identifier()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue