Files
freeCodeCamp/api-server/src/server/utils/date-utils.js
2021-03-11 12:19:42 +05:30

13 lines
305 B
JavaScript

import moment from 'moment-timezone';
// day count between two epochs (inclusive)
export function dayCount([head, tail], timezone = 'UTC') {
return Math.ceil(
moment(moment(head).tz(timezone).endOf('day')).diff(
moment(tail).tz(timezone).startOf('day'),
'days',
true
)
);
}