Skip to content

Instantly share code, notes, and snippets.

@adamculpepper
Created November 26, 2019 17:06
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 adamculpepper/13b8ff6b57a82def7efe12cd0b4571c4 to your computer and use it in GitHub Desktop.
Save adamculpepper/13b8ff6b57a82def7efe12cd0b4571c4 to your computer and use it in GitHub Desktop.
Moment.JS Snippets
var today = moment();
var tomorrow = moment().add(1, 'day');
var isToday = function(input) {
return moment(input).isSame(today, 'day');
};
var isTomorrow = function(input) {
return moment(input).isSame(tomorrow, 'day');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment