biorhythm-calculator
Version:
Comprehensive set of functions and helpers to check multiple biorhythm-related data
34 lines (32 loc) • 645 B
JavaScript
const {
CYCLE_LENGTHS,
CYCLE_REPEAT_DAYS,
BIORHYTHMS,
VALUES,
} = require('./src/constants');
const {
calculateBiorhythm,
calculateBiorhythmRange,
} = require('./src/calculator');
const {
getHowManyFullCycles,
getCurrentCycleStart,
getCurrentCycleEnd,
getCurrentCyclePercentage,
} = require('./src/cycles');
const DayFinder = require('./src/finder');
module.exports = {
constants: {
BIORHYTHMS,
CYCLE_LENGTHS,
CYCLE_REPEAT_DAYS,
VALUES,
},
calculateBiorhythm,
calculateBiorhythmRange,
getHowManyFullCycles,
getCurrentCycleStart,
getCurrentCycleEnd,
getCurrentCyclePercentage,
DayFinder,
};