ISO8601.h 331 B

1234567891011121314151617
  1. /*
  2. * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibJS/Forward.h>
  8. namespace JS::Temporal {
  9. // 13.33 ISO 8601 grammar, https://tc39.es/proposal-temporal/#sec-temporal-iso8601grammar
  10. bool is_valid_time_zone_numeric_utc_offset(String const&);
  11. }