coming soon 👀

#deno

@deno_land Very useful! For the second parameter, I’d prefer a format that’s more similar to what’s used in JavaScript APIs (vs., I’m assuming, a format inspired by cron).
@rauschma @deno_land What are you thinking?

@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.

@rauschma @lcasdev yes please, that’s way better than that cron syntax 👍