|
/** |
|
* |
|
* As per [Hebcal License](https://github.com/hebcal/hebcal-js/blob/master/COPYING) |
|
* the code in this file is provided under the terms of GNU General Public License v3.0 |
|
* |
|
*/ |
|
|
|
const Hebcal = require('hebcal'); |
|
|
|
function observeOn(d, conj = '<โโ>') { |
|
return `${d.year}/${d.month}/${d.day} ${conj} ${d.greg().toDateString()}`; |
|
} |
|
|
|
function getYahrzeitDates(hdate, futureYears = 10) { |
|
const iter = new Hebcal.HDate(hdate); |
|
|
|
const honor = iter.year; |
|
return [...Array(futureYears + 1).keys()] |
|
.slice(1) |
|
.map(away => { |
|
iter.setFullYear(honor + away); |
|
return new Hebcal.HDate(iter); |
|
}); |
|
} |
|
|
|
function remember(then, futureYears) { |
|
const yahrzeits = getYahrzeitDates(then, futureYears); |
|
return [ |
|
`๐ฏ Remembering ${observeOn(then)}`, |
|
...yahrzeits.map((remember, away) => { |
|
return `๐ [+${away + 1}] ${observeOn(remember, 'should be remembered on')}`; |
|
}) |
|
]; |
|
} |
|
|
|
// |
|
// A Jewish individual who is mourning the loss of a loved one typically sits |
|
// shiva.In Judaism, you are considered a mourner when your spouse, mother, |
|
// father, brother, sister or child passes away.Often, other relatives also |
|
// โsit shivaโ and mourn with you |
|
// |
|
const remembered = [ |
|
remember(new Hebcal.HDate(new Date(2009, 02, 03)), 20), |
|
remember(new Hebcal.HDate(new Date(2016, 06, 02))), |
|
remember(new Hebcal.HDate(new Date(2021, 01, 18))) |
|
]; |
|
|
|
console.log( |
|
remembered |
|
.map(r => r.join('\n')) |
|
.join('\n\n') |
|
); |