Calendar.h 274 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <LibJS/Runtime/Value.h>
  8. namespace JS::Temporal {
  9. bool is_iso_leap_year(i32 year);
  10. i32 iso_days_in_month(i32 year, i32 month);
  11. }