Skip to content

Instantly share code, notes, and snippets.

@vladanyes
Last active December 19, 2018 12:32
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 vladanyes/a0abc965d5d2027f0cedfb558a602c4b to your computer and use it in GitHub Desktop.
Save vladanyes/a0abc965d5d2027f0cedfb558a602c4b to your computer and use it in GitHub Desktop.
Check if the passed date is today or later(moment.js)
function isColorRed(date) {
return moment.unix(date).isBefore(moment().add(1, 'days'), 'day');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment