1.0.1 • Published 5 months ago
my-zodiac-sign v1.0.1
my-zodiac-sign
Get your zodiac sign from a birthdate (day and month) with this JavaScript module.
Installation
npm install my-zodiac-sign
Usage
The core functionality is provided by the Zodiac
function:
const { Zodiac } = require('my-zodiac-sign');
// Get the zodiac sign.
const zodiacSign = Zodiac(day, month);
console.log(zodiacSign); // Output: Your zodiac sign
// Parameters:
// * `day`: Integer representing the day of birth (1-31).
// * `month`: Integer representing the month of birth (1-12).