UNPKG
leagueofcomicgeeks
Version:
latest (1.1.0)
1.1.0
1.0.1
1.0.0
Unofficial Node.js library for interacting with League of Comic Geeks
leagueofcomicgeeks
/
src
/
utils
/
validate-date.js
6 lines
(4 loc)
•
132 B
JavaScript
View Raw
1
2
3
4
5
6
const
moment =
require
(
'moment'
);
module
.
exports
=
function
(
dateString
) {
return
moment
(dateString,
'YYYY-MM-DD'
).
isValid
(); };