UNPKG

lunar-lite

Version:

精简版的农历和阳历日期转换库。

9 lines (8 loc) 357 B
/** * 用于处理索引,将索引锁定在 0~max 范围内 * * @param index 当前索引 * @param max 最大循环数,默认为12【因为12用得最多,宫位数量以及十二地支数量都为12,所以将12作为默认值】 * @returns {number} 处理后的索引 */ export declare const fixIndex: (index: number, max?: number) => number;