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
22 lines (19 loc) • 431 B
text/typescript
import { frac, amod } from './math';
import getDateStr from './get-date-str';
import getDayBefore from './get-day-before';
import isDoubledMonth from './is-doubled-month';
import meanDate from './mean-date';
import moon from './moon';
import sun from './sun';
import yearAttributes from './year-attributes';
export {
yearAttributes,
getDateStr,
getDayBefore,
isDoubledMonth,
meanDate,
moon,
sun,
frac,
amod,
};