padolsey / cron.js

Cron for JavaScript. Still in development.
123 stars 22 forks source link

Just seconds pattern not working. "05 * * * * * " #3

Closed adammendoza closed 9 years ago

adammendoza commented 9 years ago

Should this pattern work?

var CronJob = require('cron').CronJob; new CronJob('05 * * * * *', function(){ console.log('You will see this message every second'); }, null, true, "America/Los_Angeles");

adammendoza commented 9 years ago

It works correctly.