rittenhop-dev/versions/5.94.2/node_modules/dayjs/esm/plugin/dayOfYear/index.js

9 lines
316 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
export default (function (o, c, d) {
var proto = c.prototype;
proto.dayOfYear = function (input) {
// d(this) is for badMutable
var dayOfYear = Math.round((d(this).startOf('day') - d(this).startOf('year')) / 864e5) + 1;
return input == null ? dayOfYear : this.add(input - dayOfYear, 'day');
};
});