Created
September 7, 2017 15:19
-
-
Save k-nut/8083717ca0e8768fd12ebf64da1828c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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