UNPKG

node-schedule

Version:

A cron-like and not-cron-like job scheduler for Node.

12 lines (9 loc) 242 B
'use strict'; function isValidDate(date) { // Taken from http://stackoverflow.com/a/12372720/1562178 // If getTime() returns NaN it'll return false anyway return date.getTime() === date.getTime(); } module.exports = { isValidDate }