├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── README.md ├── dist ├── dts │ ├── classes │ │ ├── tibetan-date.d.ts │ │ ├── tibetan-month.d.ts │ │ └── tibetan-year.d.ts │ ├── constants │ │ └── index.d.ts │ ├── conversions │ │ ├── index.d.ts │ │ ├── julian-from-tibetan.d.ts │ │ ├── julian-from-true-date.d.ts │ │ ├── julian-from-unix.d.ts │ │ ├── month-count-from-tibetan.d.ts │ │ ├── true-date-from-month-count-day.d.ts │ │ └── unix-from-julian.d.ts │ ├── generators │ │ ├── get-day-from-tibetan.d.ts │ │ ├── get-day-from-western.d.ts │ │ ├── get-losar-for-year.d.ts │ │ ├── get-month-from-month-count.d.ts │ │ ├── get-month-from-tibetan.d.ts │ │ ├── get-year-from-rabjung.d.ts │ │ ├── get-year-from-tibetan.d.ts │ │ └── get-year-from-western.d.ts │ ├── helpers │ │ ├── get-date-str.d.ts │ │ ├── get-day-before.d.ts │ │ ├── index.d.ts │ │ ├── is-doubled-month.d.ts │ │ ├── math.d.ts │ │ ├── mean-date.d.ts │ │ ├── moon.d.ts │ │ ├── sun.d.ts │ │ └── year-attributes.d.ts │ ├── index.d.ts │ └── types.d.ts ├── index.es.js ├── index.js └── index.umd.js ├── package.json ├── rollup.config.js ├── src ├── __mocks__ │ ├── 214008leap.ts │ ├── 214008main.ts │ ├── 214502.ts │ ├── day-mock.ts │ ├── index.ts │ ├── month-mock.ts │ └── year-mock.ts ├── classes │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── tibetan-date.spec.ts.snap │ │ │ ├── tibetan-month.spec.ts.snap │ │ │ └── tibetan-year.spec.ts.snap │ │ ├── tibetan-date.spec.ts │ │ ├── tibetan-month.spec.ts │ │ └── tibetan-year.spec.ts │ ├── tibetan-date.ts │ ├── tibetan-month.ts │ └── tibetan-year.ts ├── constants │ └── index.ts ├── conversions │ ├── __tests__ │ │ ├── julian-from-tibetan.spec.ts │ │ ├── julian-from-true-date.spec.ts │ │ ├── julian-from-unix.spec.ts │ │ ├── month-count-from-tibetan.spec.ts │ │ ├── true-date-from-month-count-day.spec.ts │ │ └── unix-from-julian.spec.ts │ ├── index.ts │ ├── julian-from-tibetan.ts │ ├── julian-from-true-date.ts │ ├── julian-from-unix.ts │ ├── month-count-from-tibetan.ts │ ├── true-date-from-month-count-day.ts │ └── unix-from-julian.ts ├── generators │ ├── __tests__ │ │ ├── __snapshots__ │ │ │ ├── get-day-from-tibetan.spec.ts.snap │ │ │ └── get-day-from-western.spec.ts.snap │ │ ├── get-day-from-tibetan.spec.ts │ │ ├── get-day-from-western.spec.ts │ │ ├── get-losar-for-year.spec.ts │ │ ├── get-month-from-month-count.spec.ts │ │ ├── get-month-from-tibetan.spec.ts │ │ ├── get-year-from-rabjung.spec.ts │ │ ├── get-year-from-tibetan.spec.ts │ │ └── get-year-from-western.spec.ts │ ├── get-day-from-tibetan.ts │ ├── get-day-from-western.ts │ ├── get-losar-for-year.ts │ ├── get-month-from-month-count.ts │ ├── get-month-from-tibetan.ts │ ├── get-year-from-rabjung.ts │ ├── get-year-from-tibetan.ts │ └── get-year-from-western.ts ├── helpers │ ├── __tests__ │ │ ├── get-date-str.spec.ts │ │ ├── get-day-before.spec.ts │ │ ├── has-leap-month.spec.ts │ │ ├── math.spec.ts │ │ ├── mean-date.spec.ts │ │ ├── moon.spec.ts │ │ ├── sun.spec.ts │ │ └── year-attributes.spec.ts │ ├── get-date-str.ts │ ├── get-day-before.ts │ ├── index.ts │ ├── is-doubled-month.ts │ ├── math.ts │ ├── mean-date.ts │ ├── moon.ts │ ├── sun.ts │ └── year-attributes.ts ├── index.ts └── types.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | /node-modules 2 | /coverage 3 | /dist 4 | /**/*.d.ts -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | coverage/ 3 | 4 | // IDE specific 5 | .idea 6 | .vscode 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/README.md -------------------------------------------------------------------------------- /dist/dts/classes/tibetan-date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/classes/tibetan-date.d.ts -------------------------------------------------------------------------------- /dist/dts/classes/tibetan-month.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/classes/tibetan-month.d.ts -------------------------------------------------------------------------------- /dist/dts/classes/tibetan-year.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/classes/tibetan-year.d.ts -------------------------------------------------------------------------------- /dist/dts/constants/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/constants/index.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/index.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/julian-from-tibetan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/julian-from-tibetan.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/julian-from-true-date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/julian-from-true-date.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/julian-from-unix.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/julian-from-unix.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/month-count-from-tibetan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/month-count-from-tibetan.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/true-date-from-month-count-day.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/true-date-from-month-count-day.d.ts -------------------------------------------------------------------------------- /dist/dts/conversions/unix-from-julian.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/conversions/unix-from-julian.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-day-from-tibetan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-day-from-tibetan.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-day-from-western.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-day-from-western.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-losar-for-year.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-losar-for-year.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-month-from-month-count.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-month-from-month-count.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-month-from-tibetan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-month-from-tibetan.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-year-from-rabjung.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-year-from-rabjung.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-year-from-tibetan.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-year-from-tibetan.d.ts -------------------------------------------------------------------------------- /dist/dts/generators/get-year-from-western.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/generators/get-year-from-western.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/get-date-str.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/get-date-str.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/get-day-before.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/get-day-before.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/index.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/is-doubled-month.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/is-doubled-month.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/math.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/math.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/mean-date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/mean-date.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/moon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/moon.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/sun.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/sun.d.ts -------------------------------------------------------------------------------- /dist/dts/helpers/year-attributes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/helpers/year-attributes.d.ts -------------------------------------------------------------------------------- /dist/dts/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/index.d.ts -------------------------------------------------------------------------------- /dist/dts/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/dts/types.d.ts -------------------------------------------------------------------------------- /dist/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/index.es.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/dist/index.umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/__mocks__/214008leap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/214008leap.ts -------------------------------------------------------------------------------- /src/__mocks__/214008main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/214008main.ts -------------------------------------------------------------------------------- /src/__mocks__/214502.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/214502.ts -------------------------------------------------------------------------------- /src/__mocks__/day-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/day-mock.ts -------------------------------------------------------------------------------- /src/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/index.ts -------------------------------------------------------------------------------- /src/__mocks__/month-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/month-mock.ts -------------------------------------------------------------------------------- /src/__mocks__/year-mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/__mocks__/year-mock.ts -------------------------------------------------------------------------------- /src/classes/__tests__/__snapshots__/tibetan-date.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/__snapshots__/tibetan-date.spec.ts.snap -------------------------------------------------------------------------------- /src/classes/__tests__/__snapshots__/tibetan-month.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/__snapshots__/tibetan-month.spec.ts.snap -------------------------------------------------------------------------------- /src/classes/__tests__/__snapshots__/tibetan-year.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/__snapshots__/tibetan-year.spec.ts.snap -------------------------------------------------------------------------------- /src/classes/__tests__/tibetan-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/tibetan-date.spec.ts -------------------------------------------------------------------------------- /src/classes/__tests__/tibetan-month.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/tibetan-month.spec.ts -------------------------------------------------------------------------------- /src/classes/__tests__/tibetan-year.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/__tests__/tibetan-year.spec.ts -------------------------------------------------------------------------------- /src/classes/tibetan-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/tibetan-date.ts -------------------------------------------------------------------------------- /src/classes/tibetan-month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/tibetan-month.ts -------------------------------------------------------------------------------- /src/classes/tibetan-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/classes/tibetan-year.ts -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/julian-from-tibetan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/julian-from-tibetan.spec.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/julian-from-true-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/julian-from-true-date.spec.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/julian-from-unix.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/julian-from-unix.spec.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/month-count-from-tibetan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/month-count-from-tibetan.spec.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/true-date-from-month-count-day.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/true-date-from-month-count-day.spec.ts -------------------------------------------------------------------------------- /src/conversions/__tests__/unix-from-julian.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/__tests__/unix-from-julian.spec.ts -------------------------------------------------------------------------------- /src/conversions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/index.ts -------------------------------------------------------------------------------- /src/conversions/julian-from-tibetan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/julian-from-tibetan.ts -------------------------------------------------------------------------------- /src/conversions/julian-from-true-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/julian-from-true-date.ts -------------------------------------------------------------------------------- /src/conversions/julian-from-unix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/julian-from-unix.ts -------------------------------------------------------------------------------- /src/conversions/month-count-from-tibetan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/month-count-from-tibetan.ts -------------------------------------------------------------------------------- /src/conversions/true-date-from-month-count-day.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/true-date-from-month-count-day.ts -------------------------------------------------------------------------------- /src/conversions/unix-from-julian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/conversions/unix-from-julian.ts -------------------------------------------------------------------------------- /src/generators/__tests__/__snapshots__/get-day-from-tibetan.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/__snapshots__/get-day-from-tibetan.spec.ts.snap -------------------------------------------------------------------------------- /src/generators/__tests__/__snapshots__/get-day-from-western.spec.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/__snapshots__/get-day-from-western.spec.ts.snap -------------------------------------------------------------------------------- /src/generators/__tests__/get-day-from-tibetan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-day-from-tibetan.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-day-from-western.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-day-from-western.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-losar-for-year.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-losar-for-year.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-month-from-month-count.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-month-from-month-count.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-month-from-tibetan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-month-from-tibetan.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-year-from-rabjung.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-year-from-rabjung.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-year-from-tibetan.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-year-from-tibetan.spec.ts -------------------------------------------------------------------------------- /src/generators/__tests__/get-year-from-western.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/__tests__/get-year-from-western.spec.ts -------------------------------------------------------------------------------- /src/generators/get-day-from-tibetan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-day-from-tibetan.ts -------------------------------------------------------------------------------- /src/generators/get-day-from-western.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-day-from-western.ts -------------------------------------------------------------------------------- /src/generators/get-losar-for-year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-losar-for-year.ts -------------------------------------------------------------------------------- /src/generators/get-month-from-month-count.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-month-from-month-count.ts -------------------------------------------------------------------------------- /src/generators/get-month-from-tibetan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-month-from-tibetan.ts -------------------------------------------------------------------------------- /src/generators/get-year-from-rabjung.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-year-from-rabjung.ts -------------------------------------------------------------------------------- /src/generators/get-year-from-tibetan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-year-from-tibetan.ts -------------------------------------------------------------------------------- /src/generators/get-year-from-western.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/generators/get-year-from-western.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/get-date-str.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/get-date-str.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/get-day-before.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/get-day-before.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/has-leap-month.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/has-leap-month.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/math.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/math.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/mean-date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/mean-date.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/moon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/moon.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/sun.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/sun.spec.ts -------------------------------------------------------------------------------- /src/helpers/__tests__/year-attributes.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/__tests__/year-attributes.spec.ts -------------------------------------------------------------------------------- /src/helpers/get-date-str.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/get-date-str.ts -------------------------------------------------------------------------------- /src/helpers/get-day-before.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/get-day-before.ts -------------------------------------------------------------------------------- /src/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/index.ts -------------------------------------------------------------------------------- /src/helpers/is-doubled-month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/is-doubled-month.ts -------------------------------------------------------------------------------- /src/helpers/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/math.ts -------------------------------------------------------------------------------- /src/helpers/mean-date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/mean-date.ts -------------------------------------------------------------------------------- /src/helpers/moon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/moon.ts -------------------------------------------------------------------------------- /src/helpers/sun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/sun.ts -------------------------------------------------------------------------------- /src/helpers/year-attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/helpers/year-attributes.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eszthoff/tibetan-date-calculator/HEAD/tsconfig.json --------------------------------------------------------------------------------