1
0
Fork 0
mirror of synced 2024-09-02 10:41:09 +12:00
budibase/packages/common/node_modules/date-fns/last_day_of_iso_week/index.js
2020-04-15 15:23:29 +01:00

25 lines
777 B
JavaScript

var lastDayOfWeek = require('../last_day_of_week/index.js')
/**
* @category ISO Week Helpers
* @summary Return the last day of an ISO week for the given date.
*
* @description
* Return the last day of an ISO week for the given date.
* The result will be in the local timezone.
*
* ISO week-numbering year: http://en.wikipedia.org/wiki/ISO_week_date
*
* @param {Date|String|Number} date - the original date
* @returns {Date} the last day of an ISO week
*
* @example
* // The last day of an ISO week for 2 September 2014 11:55:00:
* var result = lastDayOfISOWeek(new Date(2014, 8, 2, 11, 55, 0))
* //=> Sun Sep 07 2014 00:00:00
*/
function lastDayOfISOWeek (dirtyDate) {
return lastDayOfWeek(dirtyDate, {weekStartsOn: 1})
}
module.exports = lastDayOfISOWeek