-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathconsistent-date-clone.js
49 lines (47 loc) · 1.13 KB
/
consistent-date-clone.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import outdent from 'outdent';
import {getTester} from './utils/test.js';
const {test} = getTester(import.meta);
test.snapshot({
valid: [
'new Date(date)',
'date.getTime()',
'new Date(...date.getTime())',
'new Date(getTime())',
'new Date(date.getTime(), extraArgument)',
'new Date(date.not_getTime())',
'new Date(date?.getTime())',
'new NotDate(date.getTime())',
'new Date(date[getTime]())',
'new Date(date.getTime(extraArgument))',
'Date(date.getTime())',
// We may support these cases in future, https://github.com/sindresorhus/eslint-plugin-unicorn/issues/2437
outdent`
new Date(
date.getFullYear(),
date.getMonth(),
date.getDate(),
date.getHours(),
date.getMinutes(),
date.getSeconds(),
date.getMilliseconds(),
);
`,
outdent`
new Date(
date.getFullYear(),
date.getMonth(),
date.getDate(),
date.getHours(),
date.getMinutes(),
date.getSeconds(),
);
`,
],
invalid: [
'new Date(date.getTime())',
'new Date(date.getTime(),)',
'new Date((0, date).getTime())',
'new Date(date.getTime(/* comment */))',
'new Date(date./* comment */getTime())',
],
});