1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:27:45 +00:00

LibJS: Remove unused is_valid_time_zone_numeric_utc_offset_syntax()

...as well as the underlying function:
parse_time_zone_numeric_utc_offset_syntax()
This commit is contained in:
Linus Groh 2023-01-26 16:15:49 +00:00
parent bb0362ec3b
commit 70e8a9bc8b
2 changed files with 0 additions and 46 deletions

View file

@ -53,6 +53,4 @@ ThrowCompletionOr<Instant*> disambiguate_possible_instants(VM&, MarkedVector<Ins
ThrowCompletionOr<MarkedVector<Instant*>> get_possible_instants_for(VM&, Value time_zone, PlainDateTime&);
ThrowCompletionOr<bool> time_zone_equals(VM&, Object& one, Object& two);
bool is_valid_time_zone_numeric_utc_offset_syntax(DeprecatedString const&);
}