/
githubmirror
/
dayjs
Обзор
Документация
Войти
/
githubmirror
/
dayjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/plugin/isoWeeksInYear/index.js
12 строк
287 B
iamkun
fix: Add isoWeeksInYear plugin
28 мар 2019, 13:59
28 мар 2019, 13:59
2db8631
Код
Авторство
О чём код?
export default (o, c) => { const proto = c.prototype proto.isoWeeksInYear = function () { const isLeapYear = this.isLeapYear() const last = this.endOf('y') const day = last.day() if (day === 4 || (isLeapYear && day === 5)) { return 53 } return 52 } }