JSFiddle - React, Tailwind, and code Playground

by remguif

HTML

<script src="https://sites.google.com/a/guiffault.com/test/later-min-js/later.min.js"></script>

JavaScript

var cronSched = later.parse.cron('0 0/5 14,18 * * ?');
console.log(JSON.stringify(cronSched));

cronSched = later.parse.cron('* * * * * *');
console.log(JSON.stringify(cronSched));

cronSched = later.parse.cron('00 00 09 * * *');
console.log(JSON.stringify(cronSched));