Files
memecoin-botV2/.pnpm-store/v10/files/87/6793b7ead36453b5a6fc9f1bbb85642a3121f8fd61b4be0e63d43eafad65cf2c62f66748226365727332b39941b7fcc40f65602d1fd5534ee4fb62cfbaa529

15 lines
337 B
Plaintext

'use strict'
module.exports = isValidDate
/**
* Checks if the argument is a JS Date and not 'Invalid Date'.
*
* @param {Date} date The date to check.
*
* @returns {boolean} true if the argument is a JS Date and not 'Invalid Date'.
*/
function isValidDate (date) {
return date instanceof Date && !Number.isNaN(date.getTime())
}