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
10 lines (9 loc) • 420 B
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, };