File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,17 @@ export function parseTime(time, cFormat) {
17
17
if ( typeof time === 'object' ) {
18
18
date = time
19
19
} else {
20
- if ( ( typeof time === 'string' ) && ( / ^ [ 0 - 9 ] + $ / . test ( time ) ) ) {
21
- time = parseInt ( time )
20
+ if ( ( typeof time === 'string' ) ) {
21
+ if ( ( / ^ [ 0 - 9 ] + $ / . test ( time ) ) ) {
22
+ // support "1548221490638"
23
+ time = parseInt ( time )
24
+ } else {
25
+ // support safari
26
+ // https://stackoverflow.com/questions/4310953/invalid-date-in-safari
27
+ time = time . replace ( new RegExp ( / - / gm) , '/' )
28
+ }
22
29
}
30
+
23
31
if ( ( typeof time === 'number' ) && ( time . toString ( ) . length === 10 ) ) {
24
32
time = time * 1000
25
33
}
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ describe('Utils:parseTime', () => {
4
4
it ( 'timestamp' , ( ) => {
5
5
expect ( parseTime ( d ) ) . toBe ( '2018-07-13 17:54:01' )
6
6
} )
7
+
8
+ it ( 'timestamp string' , ( ) => {
9
+ expect ( parseTime ( ( d + '' ) ) ) . toBe ( '2018-07-13 17:54:01' )
10
+ } )
11
+
7
12
it ( 'ten digits timestamp' , ( ) => {
8
13
expect ( parseTime ( ( d / 1000 ) . toFixed ( 0 ) ) ) . toBe ( '2018-07-13 17:54:01' )
9
14
} )
You can’t perform that action at this time.
0 commit comments