UNPKG
mothers-day
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Get date in any year for Mother's Day.
github.com/tooto1985/mothers-day
tooto1985/mothers-day
mothers-day
/
index.js
14 lines
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module
.
exports
=
function
(
year
) {
var
day =
1
;
var
date =
new
Date
(year,
4
, day);
var
check =
0
;
while
(check <
2
) {
if
(date.
getDay
() ===
0
) {
if
(++check >=
2
) {
break
; } } date.
setDate
(++day); }
return
date; }