diff --git a/src/utils/index.js b/src/utils/index.js index 3d0369ab..423ab505 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -9,12 +9,12 @@ * @returns {string | null} */ export function parseTime(time, cFormat) { - if (arguments.length === 0) { + if (arguments.length === 0 && time != null) { return null } const format = cFormat || '{y}-{m}-{d} {h}:{i}:{s}' let date - if (typeof time === 'object' && time != null) { + if (typeof time === 'object') { date = time } else { if ((typeof time === 'string') && (/^[0-9]+$/.test(time))) {