moment-lunar icon indicating copy to clipboard operation
moment-lunar copied to clipboard

A lunar calendar(used in korea, chinese, ...) extension for moment.js.

Results 2 moment-lunar issues
Sort by recently updated
recently updated
newest added

I tested with different solar days and get same results ``` var w = '2024-04-08'; var a = moment(w).lunar().format('YYYY-MM-DD'); console.log(w, a); // 2024-04-08 2024-03-01 w = '2024-04-09'; a = moment(w).lunar().format('YYYY-MM-DD');...

I may be nitpicking, but the lunar conversion function breaks beyond 2111. This should be due to the binary lookup table only contains leap year/leap month information upto 2111, and...