|
|
@ -17,6 +17,8 @@ export function parseTime(time, pattern) { |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) { |
|
|
|
if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) { |
|
|
|
time = parseInt(time) |
|
|
|
time = parseInt(time) |
|
|
|
|
|
|
|
} else if (typeof time === 'string') { |
|
|
|
|
|
|
|
time = time.replace(new RegExp(/-/gm), '/'); |
|
|
|
} |
|
|
|
} |
|
|
|
if ((typeof time === 'number') && (time.toString().length === 10)) { |
|
|
|
if ((typeof time === 'number') && (time.toString().length === 10)) { |
|
|
|
time = time * 1000 |
|
|
|
time = time * 1000 |
|
|
|