rflect
Version:
A CLI tool for guided reflections and journaling
27 lines (23 loc) • 410 B
JavaScript
const moods = [
// Positive
'😊 happy',
'😌 peaceful',
'✨ inspired',
'🎉 excited',
'😍 loved',
'🤗 grateful',
'💪 confident',
// Negative
'😤 frustrated',
'😢 sad',
'😰 anxious',
'😔 disappointed',
'😩 overwhelmed',
// Neutral
'😐 neutral',
'🤔 thoughtful',
'😶 indifferent',
'😴 tired',
'📚 focused',
];
module.exports = { moods };