UNPKG
bigmoment
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Date manipulation that can track the age of the universe
bigmoment
/
lib
/
isWeek.js
5 lines
(4 loc)
•
140 B
JavaScript
View Raw
1
2
3
4
5
const
re =
new
RegExp
(
"^-?[0-9]{4}-W[0-5][0-9]"
);
module
.
exports
=
function
isWeek
(
arg
){
return
typeof
arg ===
'string'
&& re.
test
(arg); }