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

9 lines (7 loc) 254 B
import julianFromUnix from '../julian-from-unix'; describe('julianFromUnix(date)', () => { it('should return the correct Julian date', () => { const date = new Date('2018-07-21T18:00'); expect(julianFromUnix(date)).toEqual(2458321); }); });