UNPKG

dayjs

Version:

2KB immutable date time library alternative to Moment.js with the same modern API

15 lines (12 loc) 366 B
export default (function (o, c) { var proto = c.prototype; proto.weekday = function (input) { var weekStart = this.$locale().weekStart || 0; var $W = this.$W; var weekday = ($W < weekStart ? $W + 7 : $W) - weekStart; if (this.$utils().u(input)) { return weekday; } return this.subtract(weekday, 'day').add(input, 'day'); }; });