mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
|
'use strict';
|
||
|
|
||
|
var Day = require('./Day');
|
||
|
var modulo = require('./modulo');
|
||
|
|
||
|
// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.6
|
||
|
|
||
|
module.exports = function WeekDay(t) {
|
||
|
return modulo(Day(t) + 4, 7);
|
||
|
};
|