coming soon 👀
coming soon 👀
@lcasdev Object literals instead of strings—maybe like this:
// "*/1 * * * *"
{nthMinute: 1}
// "45 23 * * 6"
{minute:45, hour:23, dayOfWeek: 6}
// "*/5 1,2,3 * * *"
{nthMinute: 5, hour: [1,2,3]}
The first parameter could be included in the object literal (`id`?), but maybe not the last parameter.