UNPKG

tibetan-date-calculator

Version:

A library to calculate tibetan calendar details. It is based on Svante Janson's paper www2.math.uu.se/~svante/papers/calendars/tibet.pdf

11 lines (10 loc) 363 B
/** * Calculates whether a given Tibetan year and month number is doubled, i.e * is preceded by a leap month. * * @param {number} tYear - tibetan year * @param {number} month - month number * @returns {boolean} */ declare const isDoubledMonth: (tYear: number, month: number) => boolean; export default isDoubledMonth;