• File: dateUtils.js
  • Full Path: /var/www/nodejs/Notifications_Imali_API/node_modules/node-schedule/lib/utils/dateUtils.js
  • Date Modified: 10/26/1985 3:15 PM
  • File size: 242 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'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
}