Skip to content

Commit 5716088

Browse files
authored
Merge pull request #1316 from iamkun/dev
D2M
2 parents 873b749 + b0dda31 commit 5716088

File tree

5 files changed

+46
-2
lines changed

5 files changed

+46
-2
lines changed

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
"description": "2KB immutable date time library alternative to Moment.js with the same modern API ",
55
"main": "dayjs.min.js",
66
"types": "index.d.ts",
7-
"module": "esm/index.js",
87
"scripts": {
98
"test": "TZ=Pacific/Auckland npm run test-tz && TZ=Europe/London npm run test-tz && TZ=America/Whitehorse npm run test-tz && npm run test-tz && jest",
109
"test-tz": "date && jest test/timezone.test --coverage=false",

src/constant.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ export const FORMAT_DEFAULT = 'YYYY-MM-DDTHH:mm:ssZ'
2626
export const INVALID_DATE_STRING = 'Invalid Date'
2727

2828
// regex
29-
export const REGEX_PARSE = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[^0-9]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?\.?(\d+)?$/
29+
export const REGEX_PARSE = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[^0-9]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/
3030
export const REGEX_FORMAT = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g

src/plugin/devHelper/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ export default (o, c, d) => {
88
if (typeof date === 'string' && date.length === 13) {
99
console.warn(`To parse a Unix timestamp like ${date}, you should pass it as a Number. https://day.js.org/docs/en/parse/unix-timestamp-milliseconds`)
1010
}
11+
if (typeof date === 'number' && String(date).length === 4) {
12+
console.warn(`Guessing you may want to parse the Year ${date}, you should pass it as a String ${date}, not a Number. Otherwise, ${date} will be treated as a Unix timestamp`)
13+
}
1114
if (cfg.args.length >= 2 && !d.p.customParseFormat) {
1215
console.warn(`To parse a date-time string like ${date} using the given format, you should enable customParseFormat plugin first. https://day.js.org/docs/en/parse/string-format`)
1316
}

test/parse.test.js

+8
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,14 @@ describe('REGEX_PARSE', () => {
174174
expect(d).toBe(null)
175175
})
176176

177+
// format used in timezone plugin utcString
178+
it('2021-1-4 0:42:53:000', () => {
179+
const date = '2021-1-4 0:42:53:000'
180+
const d = date.match(REGEX_PARSE)
181+
expect(dayjs(date).valueOf()).toBe(moment(date).valueOf())
182+
expect(d.join('-')).toBe('2021-1-4 0:42:53:000-2021-1-4-0-42-53-000')
183+
})
184+
177185
it('2020-12-31T18:00:00-05:00 (no regex match)', () => {
178186
const date = '2020-12-31T18:00:00-05:00'
179187
const d = date.match(REGEX_PARSE)

test/plugin/devHelper.test.js

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import MockDate from 'mockdate'
2+
import dayjs from '../../src'
3+
import devHelper from '../../src/plugin/devHelper'
4+
5+
dayjs.extend(devHelper)
6+
7+
beforeEach(() => {
8+
MockDate.set(new Date())
9+
})
10+
11+
afterEach(() => {
12+
MockDate.reset()
13+
})
14+
15+
global.console.warn = jest.genMockFunction()
16+
17+
18+
it('Warning: passing Year as a Number will be parsed as a Unix timestamp', () => {
19+
const consoleSpy = jest.spyOn(console, 'warn')
20+
dayjs(2020)
21+
expect(consoleSpy).toHaveBeenCalledWith('Guessing you may want to parse the Year 2020, you should pass it as a String 2020, not a Number. Otherwise, 2020 will be treated as a Unix timestamp')
22+
})
23+
24+
it('Warning Passing Unix timestamp as a String not Number', () => {
25+
const consoleSpy = jest.spyOn(console, 'warn')
26+
dayjs('1231231231231')
27+
expect(consoleSpy).toHaveBeenCalledWith('To parse a Unix timestamp like 1231231231231, you should pass it as a Number. https://day.js.org/docs/en/parse/unix-timestamp-milliseconds')
28+
})
29+
30+
it('Warning Enable customParseFormat plugin while passing the second format parameter', () => {
31+
const consoleSpy = jest.spyOn(console, 'warn')
32+
dayjs('2020', 'YYYY')
33+
expect(consoleSpy).toHaveBeenCalledWith('To parse a date-time string like 2020 using the given format, you should enable customParseFormat plugin first. https://day.js.org/docs/en/parse/string-format')
34+
})

0 commit comments

Comments
 (0)