tyme4ts
Version:
Tyme是一个非常强大的日历工具库,可以看作 Lunar 的升级版,拥有更优的设计和扩展性,支持公历和农历、星座、干支、生肖、节气、法定假日等。
23 lines (18 loc) • 552 B
text/typescript
import {suite, test} from '@testdeck/mocha';
import {SolarDay} from '../lib';
import {equal} from 'assert';
class FetusTest {
test() {
equal(SolarDay.fromYmd(2021, 11, 13).getLunarDay().getFetusDay().getName(), '碓磨厕 外东南');
}
test1() {
equal(SolarDay.fromYmd(2021, 11, 12).getLunarDay().getFetusDay().getName(), '占门碓 外东南');
}
test2() {
equal(SolarDay.fromYmd(2011, 11, 12).getLunarDay().getFetusDay().getName(), '厨灶厕 外西南');
}
}