Skip to content

Instantly share code, notes, and snippets.

@dsernst
Created January 26, 2016 02:18
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 dsernst/4785535fb3282e41219e to your computer and use it in GitHub Desktop.
Save dsernst/4785535fb3282e41219e to your computer and use it in GitHub Desktop.
Convert a Gmail datetime into an ISODate for Mongo
// Convert a Gmail datetime into an ISODate for Mongo
function gmailToIso(string) {
return 'ISODate("' + new Date(string.split('at ').join('')).toISOString() + '")'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment