/
githubmirror
/
dayjs
Обзор
Документация
Войти
/
githubmirror
/
dayjs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
src/plugin/localizedFormat/index.js
14 строк
406 B
Jukka Raimovaara
fix: customParseFormat plugin supports parsing localizedFormats (#1110)
30 окт 2020, 06:10
30 окт 2020, 06:10
402b603
Код
Авторство
О чём код?
import { FORMAT_DEFAULT } from '../../constant' import { u, englishFormats } from './utils' export default (o, c, d) => { const proto = c.prototype const oldFormat = proto.format d.en.formats = englishFormats proto.format = function (formatStr = FORMAT_DEFAULT) { const { formats = {} } = this.$locale() const result = u(formatStr, formats) return oldFormat.call(this, result) } }