UNPKG
@idris-maps/yyyy-mm-dd
Version:
latest (0.0.2)
0.0.2
0.0.1
A date library dealing only with days in the YYYY-MM-DD format
@idris-maps/yyyy-mm-dd
/
dist
/
weekdayIndex.js
8 lines
(7 loc)
•
223 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= (
function
(
day
) {
var
d =
new
Date
(day);
var
dayNum = d.
getDay
() -
1
;
return
dayNum === -
1
?
6
: dayNum; });