Skip to content

Instantly share code, notes, and snippets.

@aykutyaman
Created December 20, 2018 12:52
Show Gist options
  • Save aykutyaman/46bf31dd8276c25eb783cad65e9f6716 to your computer and use it in GitHub Desktop.
Save aykutyaman/46bf31dd8276c25eb783cad65e9f6716 to your computer and use it in GitHub Desktop.
check if a date is valid or not
// isValid -> Date -> Bool
const isValidDate = d => d instanceof Date && !isNaN(d.getTime())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment