Your IP : 216.73.216.220


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/cron/examples/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/cron/examples/is_crontime_valid.js

const CronJob = require('../lib/cron.js').CronJob;

try {
	new CronJob('NOT VALID', () => {
		console.log('shouldn\'t get printed');
	});
} catch(e) {
	console.log('omg err', e);
}