UNPKG
@notlekmelo/gerar-boletos
Version:
latest (1.5.11)
1.5.11
1.5.9
1.5.8
1.5.7
1.5.6
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.5
Gerar boletos para vários bancos
github.com/Romulosanttos/gerar-boletos
notlekmelo/gerar-boletos
@notlekmelo/gerar-boletos
/
lib
/
utils
/
date-utils.js
9 lines
(7 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
.
isValidDate
=
function
(
date
) {
//http://stackoverflow.com/questions/1353684/detecting-an-invalid-date-date-instance-in-javascript
if
(
Object
.
prototype
.
toString
.
call
(date) !==
'[object Date]'
) {
return
false
; }
return
!
isNaN
(date.
getTime
()); };