/
githubmirror
/
dayjs
Обзор
Документация
Войти
/
githubmirror
/
dayjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/plugin/arraySupport/index.js
25 строк
628 B
iamkun
fix: add arraySupport plugin (#1129)
13 окт 2020, 11:10
Не верифицирован
13 окт 2020, 11:10
be505c2
Код
Авторство
О чём код?
export default (o, c, dayjs) => { const proto = c.prototype const parseDate = (cfg) => { const { date, utc } = cfg if (Array.isArray(date)) { if (utc) { if (!date.length) { return new Date() } return new Date(Date.UTC.apply(null, date)) } if (date.length === 1) { return dayjs(String(date[0])).toDate() } return new (Function.prototype.bind.apply(Date, [null].concat(date)))() } return date } const oldParse = proto.parse proto.parse = function (cfg) { cfg.date = parseDate.bind(this)(cfg) oldParse.bind(this)(cfg) } }