biorhythm-calculator
Version:
Comprehensive set of functions and helpers to check multiple biorhythm-related data
32 lines (27 loc) • 382 B
JavaScript
const CYCLE_REPEAT_DAYS = 21252;
/**
* @enum
*/
const BIORHYTHMS = {
physical: 'physical',
emotional: 'emotional',
intellectual: 'intellectual',
};
/**
* @enum
*/
const CYCLE_LENGTHS = {
physical: 23,
emotional: 28,
intellectual: 33,
};
const VALUES = {
max: 1,
min: -1,
};
module.exports = {
CYCLE_REPEAT_DAYS,
BIORHYTHMS,
CYCLE_LENGTHS,
VALUES,
};