Skip to content

Commit 3aa2e91

Browse files
committed
fix: update customParseFormat plugin strict x X parsing
1 parent 755fc8b commit 3aa2e91

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

src/plugin/customParseFormat/index.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,10 @@ export default (o, C, d) => {
232232
this.$d = parseFormattedInput(date, format, utc)
233233
this.init()
234234
if (pl && pl !== true) this.$L = this.locale(pl).$L
235-
if (isStrict && date !== this.format(format)) {
235+
// use != to treat
236+
// input number 1410715640579 and format string '1410715640579' equal
237+
// eslint-disable-next-line eqeqeq
238+
if (isStrict && date != this.format(format)) {
236239
this.$d = new Date('')
237240
}
238241
// reset global locale to make parallel unit test

test/plugin/customParseFormat.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import '../../src/locale/ru'
55
import uk from '../../src/locale/uk'
66
import '../../src/locale/zh-cn'
77
import customParseFormat from '../../src/plugin/customParseFormat'
8+
import advancedFormat from '../../src/plugin/advancedFormat'
89
import localizedFormats from '../../src/plugin/localizedFormat'
910

1011
dayjs.extend(customParseFormat)
@@ -376,4 +377,8 @@ it('parse X x', () => {
376377
const input2 = '1410715640579'
377378
const format2 = 'x'
378379
expect(dayjs(input2, format2).valueOf()).toBe(moment(input2, format2).valueOf())
380+
381+
// x X starct parse requires advancedFormat plugin
382+
dayjs.extend(advancedFormat)
383+
expect(dayjs(input2, format2, true).valueOf()).toBe(moment(input2, format2, true).valueOf())
379384
})

0 commit comments

Comments
 (0)