This file contains hidden or 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
| {"lastUpload":"2022-01-06T12:05:00.303Z","extensionVersion":"v3.4.3"} |
This file contains hidden or 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
| const manager = FileManager.local(); | |
| const configPath = manager.joinPath(manager.libraryDirectory(), 'config.json'); | |
| function addDate(date, days) { | |
| const copy = new Date(Number(date)); | |
| copy.setDate(date.getDate() + days); | |
| return copy; | |
| } | |
| const isToday = (someDate) => { | |
| const today = new Date() |