UNPKG

iztro

Version:

轻量级紫微斗数星盘生成库。可以通过出生年月日获取到紫微斗数星盘信息、生肖、星座等信息。This is a lightweight kit for generating astrolabes for Zi Wei Dou Shu (The Purple Star Astrology), an ancient Chinese astrology. It allows you to obtain your horoscope and personality analysis.

30 lines (29 loc) 888 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getLeapDays = exports.getLeapMonth = void 0; var rules_1 = require("./rules"); /** * 返回农历年闰月是哪个月;若没有闰月 则返回0 * @param year 农历年份 * @return Number (0-12) * @example * leapMonth = getLeapMonth(1987) ; // leapMonth=6 */ var getLeapMonth = function (year) { return rules_1.LUNAR_INFO[year - 1900] & 0xf; }; exports.getLeapMonth = getLeapMonth; /** * 返回农历年闰月的天数 若该年没有闰月则返回0 * @param year 农历年份 * @return Number (0、29、30) * @example * leapMonthDay = getLeapDays(1987) ; //leapMonthDay=29 */ var getLeapDays = function (year) { if ((0, exports.getLeapMonth)(year)) { return rules_1.LUNAR_INFO[year - 1900] & 0x10000 ? 30 : 29; } return 0; }; exports.getLeapDays = getLeapDays;