Skip to content

Instantly share code, notes, and snippets.

@VerosK
Created September 18, 2024 12:25
Show Gist options
  • Select an option

  • Save VerosK/c0ab8d06d57b9ae0b51256f7baaa4f19 to your computer and use it in GitHub Desktop.

Select an option

Save VerosK/c0ab8d06d57b9ae0b51256f7baaa4f19 to your computer and use it in GitHub Desktop.

Revisions

  1. VerosK created this gist Sep 18, 2024.
    13 changes: 13 additions & 0 deletions renovate.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,13 @@

    var later = require('later');

    var schedule = later.parse.text('on sunday every 2nd week');

    //var dateToCheck = new Date('2024-01-21T10:10:00Z');
    var dateToCheck = new Date('2024-02-04T10:10:00Z');
    //console.log(schedule);

    // Check if the date is valid in the schedule
    var isValid = later.schedule(schedule).isValid(dateToCheck);

    console.log('Is the date in the schedule?', isValid);