Skip to content

Instantly share code, notes, and snippets.

@k-nut
Created September 7, 2017 15:19
Show Gist options
  • Save k-nut/8083717ca0e8768fd12ebf64da1828c7 to your computer and use it in GitHub Desktop.
Save k-nut/8083717ca0e8768fd12ebf64da1828c7 to your computer and use it in GitHub Desktop.
let targetDate = new Date(2017, 8, 26, 0, 0, 0, 0)
let rem = Application('Reminders').lists.byName('Test').reminders();
rem
.filter(reminder => reminder.completionDate() < targetDate)
.map(reminder => reminder.name());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment