I'm trying to schedule a job which runs for every 10 seconds between 9:00 AM to 3:30 PM from Monday to Friday using node-cron but I cannout achieve it. Here's my Node Cron code right now I can able to schedule between 9:00 AM to 4:00 PM but I want it from 9:00 AM to 3:30PM, How can I achieve this in node-cron?
const job = cron.schedule('*/1 9-16 * * 1-5', () => {
console.log(new Date());
}, {
timezone: 'Asia/Kolkata'
});