Skip to content

Instantly share code, notes, and snippets.

@andersondias
Created February 5, 2024 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andersondias/7d20adc84b3cef0ae748a521f89e5105 to your computer and use it in GitHub Desktop.
Save andersondias/7d20adc84b3cef0ae748a521f89e5105 to your computer and use it in GitHub Desktop.
Addition to Google's Vacation calendar template
// Add this to the shouldImportEvent method.
// Filters out events that are less than 4 hours long.
const millisecondsIn4Hours = 4 * 60 * 60 * 1000;
if (new Date(event.end.dateTime) - new Date(event.start.dateTime) < millisecondsIn4Hours) {
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment