ladybird/Libraries/LibJS/Runtime/Temporal/DateEquations.h
2025-06-30 10:50:36 -06:00

27 lines
778 B
C++

/*
* Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
#include <LibJS/Forward.h>
namespace JS::Temporal {
// 13.3 Date Equations, https://tc39.es/proposal-temporal/#sec-date-equations
JS_API u16 mathematical_days_in_year(i32 year);
JS_API u8 mathematical_in_leap_year(double time);
JS_API double epoch_time_to_day_number(double time);
JS_API double epoch_day_number_for_year(double year);
JS_API double epoch_time_for_year(double year);
JS_API i32 epoch_time_to_epoch_year(double time);
JS_API u16 epoch_time_to_day_in_year(double time);
JS_API u8 epoch_time_to_month_in_year(double time);
JS_API u8 epoch_time_to_week_day(double time);
JS_API u8 epoch_time_to_date(double time);
}