1.0.0 • Published 2 months ago

squarunblownett v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

Squarunblownett

Node.js module for lunar calendar calculations.

Installation

You can install this module via npm: npm install squarunblownett

Usage

const lunarUtils = require('lunar-calendar-utils');

// Get current lunar date
const currentLunarDate = lunarUtils.getCurrentLunarDate();
console.log('Current Lunar Date:', currentLunarDate);

// Get next full moon date
const nextFullMoonDate = lunarUtils.getNextFullMoonDate();
console.log('Next Full Moon Date:', nextFullMoonDate);