Localize a cron expression using offset in minutes
const utc = `0 0 2 * * 2`
// 02:00, every Monday
const est = LocalizeCronExpression(utc, -240, {
dayOfWeekStartIndexZero:false,
monthStartIndexZero:false
})
// 0 0 22 * * 1
// 22:00, every Sunday